Skip to content

Commit 16abe5e

Browse files
committed
update module
1 parent 4c547b8 commit 16abe5e

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

examples/complete/output.tf

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,72 @@
11
output "app_service_plan_id" {
22
description = "The resource ID of the App Service Plan component"
3-
value = module.web-app.app_service_plan_id
3+
value = module.app-service.app_service_plan_id
44
}
55

66
output "maximum_number_of_workers" {
77
description = " The maximum number of workers supported with the App Service Plan's sku"
8-
value = module.web-app.maximum_number_of_workers
8+
value = module.app-service.maximum_number_of_workers
99
}
1010

1111
output "app_service_id" {
1212
description = "The resource ID of the App Service component"
13-
value = module.web-app.app_service_id
13+
value = module.app-service.app_service_id
1414
}
1515

1616
output "default_site_hostname" {
1717
description = "The Default Hostname associated with the App Service"
18-
value = module.web-app.default_site_hostname
18+
value = module.app-service.default_site_hostname
1919
}
2020

2121
output "outbound_ip_addresses" {
2222
description = "A comma separated list of outbound IP addresses"
23-
value = module.web-app.outbound_ip_addresses
23+
value = module.app-service.outbound_ip_addresses
2424
}
2525

2626
output "outbound_ip_address_list" {
2727
description = "A list of outbound IP addresses"
28-
value = module.web-app.outbound_ip_address_list
28+
value = module.app-service.outbound_ip_address_list
2929
}
3030

3131
output "possible_outbound_ip_addresses" {
3232
description = "A comma separated list of outbound IP addresses - not all of which are necessarily in use. Superset of `outbound_ip_addresses`."
33-
value = module.web-app.possible_outbound_ip_addresses
33+
value = module.app-service.possible_outbound_ip_addresses
3434
}
3535

3636
output "possible_outbound_ip_address_list" {
3737
description = "A list of outbound IP addresses - not all of which are necessarily in use. Superset of outbound_ip_address_list."
38-
value = module.web-app.possible_outbound_ip_address_list
38+
value = module.app-service.possible_outbound_ip_address_list
3939
}
4040

4141
output "identity" {
4242
description = "An identity block, which contains the Managed Service Identity information for this App Service."
43-
value = module.web-app.identity
43+
value = module.app-service.identity
4444
}
4545

4646
output "application_insights_id" {
4747
description = "The ID of the Application Insights component"
48-
value = module.web-app.application_insights_id
48+
value = module.app-service.application_insights_id
4949
}
5050

5151
output "application_insights_app_id" {
5252
description = "The App ID associated with this Application Insights component"
53-
value = module.web-app.application_insights_app_id
53+
value = module.app-service.application_insights_app_id
5454
}
5555

5656
output "application_insights_instrumentation_key" {
5757
description = "The Instrumentation Key for this Application Insights component"
58-
value = module.web-app.application_insights_instrumentation_key
58+
value = module.app-service.application_insights_instrumentation_key
5959
sensitive = true
6060
}
6161

6262
output "application_insights_connection_string" {
6363
description = "The Connection String for this Application Insights component"
64-
value = module.web-app.application_insights_connection_string
64+
value = module.app-service.application_insights_connection_string
6565
sensitive = true
6666
}
6767

6868
output "sas_url_query_string" {
69-
value = module.web-app.sas_url_query_string
69+
value = module.app-service.sas_url_query_string
7070
sensitive = true
7171
}
7272

0 commit comments

Comments
 (0)