|
1 | 1 | output "app_service_plan_id" { |
2 | 2 | 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 |
4 | 4 | } |
5 | 5 |
|
6 | 6 | output "maximum_number_of_workers" { |
7 | 7 | 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 |
9 | 9 | } |
10 | 10 |
|
11 | 11 | output "app_service_id" { |
12 | 12 | 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 |
14 | 14 | } |
15 | 15 |
|
16 | 16 | output "default_site_hostname" { |
17 | 17 | 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 |
19 | 19 | } |
20 | 20 |
|
21 | 21 | output "outbound_ip_addresses" { |
22 | 22 | 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 |
24 | 24 | } |
25 | 25 |
|
26 | 26 | output "outbound_ip_address_list" { |
27 | 27 | 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 |
29 | 29 | } |
30 | 30 |
|
31 | 31 | output "possible_outbound_ip_addresses" { |
32 | 32 | 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 |
34 | 34 | } |
35 | 35 |
|
36 | 36 | output "possible_outbound_ip_address_list" { |
37 | 37 | 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 |
39 | 39 | } |
40 | 40 |
|
41 | 41 | output "identity" { |
42 | 42 | 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 |
44 | 44 | } |
45 | 45 |
|
46 | 46 | output "application_insights_id" { |
47 | 47 | description = "The ID of the Application Insights component" |
48 | | - value = module.web-app.application_insights_id |
| 48 | + value = module.app-service.application_insights_id |
49 | 49 | } |
50 | 50 |
|
51 | 51 | output "application_insights_app_id" { |
52 | 52 | 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 |
54 | 54 | } |
55 | 55 |
|
56 | 56 | output "application_insights_instrumentation_key" { |
57 | 57 | 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 |
59 | 59 | sensitive = true |
60 | 60 | } |
61 | 61 |
|
62 | 62 | output "application_insights_connection_string" { |
63 | 63 | 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 |
65 | 65 | sensitive = true |
66 | 66 | } |
67 | 67 |
|
68 | 68 | output "sas_url_query_string" { |
69 | | - value = module.web-app.sas_url_query_string |
| 69 | + value = module.app-service.sas_url_query_string |
70 | 70 | sensitive = true |
71 | 71 | } |
72 | 72 |
|
0 commit comments