This commit is contained in:
2025-01-21 12:43:04 -06:00
parent c8e909ae88
commit 7c77a5298a
17 changed files with 940 additions and 37 deletions

View File

@@ -1,13 +1,17 @@
output "api_key" {
value = module.static_web_app.api_key
value = azurerm_static_web_app.static_web_app.api_key
sensitive = true
}
output "default_host_name" {
value = module.static_web_app.default_host_name
}
# output "default_host_name" {
# value = azurerm_static_web_app.static_web_app.default_host_name
# }
output "validation_token" {
value = azurerm_static_web_app_custom_domain.static_web_app_custom_domain_txt.validation_token
sensitive = true
# output "validation_token" {
# value = azurerm_static_web_app_custom_domain.static_web_app_custom_domain_txt.validation_token
# sensitive = false
# }
output "name_servers" {
value = azurerm_dns_zone.dns_zone.name_servers
}