-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoutputs.tf
40 lines (33 loc) · 1.36 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
output "app_id" {
description = "The ID of this Web App."
value = local.web_app.id
}
output "app_name" {
description = "The name of this Web App."
value = local.web_app.name
}
output "identity_principal_id" {
description = "The principal ID of the system-assigned identity of this Web App. This value will be null if the system-assigned identity is disabled."
value = try(local.web_app.identity[0].principal_id, null)
}
output "identity_tenant_id" {
description = "The tenant ID of the system-assigned identity of this Web App. This value will be null if the system-assigned identity is disabled."
value = try(local.web_app.identity[0].tenant_id, null)
}
output "default_hostname" {
description = "The default hostname of this Web App."
value = local.web_app.default_hostname
}
output "custom_domain_verification_id" {
description = "The identifier used by App Service to perform domain ownership verification via DNS TXT record."
value = local.web_app.custom_domain_verification_id
}
output "site_credential_name" {
description = "The Site Credentials Username used for publishing."
value = local.web_app.site_credential[0].name
}
output "site_credential_password" {
description = "The Site Credentials Password used for publishing."
value = local.web_app.site_credential[0].password
sensitive = true
}