generated from Azure/terraform-azurerm-avm-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathoutputs.tf
26 lines (22 loc) · 808 Bytes
/
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
output "name" {
description = "The name of the static site."
value = azurerm_static_web_app.this.name
}
output "resource" {
description = "This is the full output for the resource."
sensitive = true
value = azurerm_static_web_app.this
}
output "resource_id" {
description = "The ID of the static site."
sensitive = true
value = azurerm_static_web_app.this.id
}
output "resource_private_endpoints" {
description = "A map of private endpoints. The map key is the supplied input to var.private_endpoints. The map value is the entire azurerm_private_endpoint resource."
value = azurerm_private_endpoint.this
}
output "resource_uri" {
description = "The default hostname of the static web app."
value = azurerm_static_web_app.this.default_host_name
}