First commit

This commit is contained in:
2024-05-19 15:25:41 -05:00
commit c8e909ae88
29 changed files with 7715 additions and 0 deletions

13
infrastructure/outputs.tf Normal file
View File

@@ -0,0 +1,13 @@
output "api_key" {
value = module.static_web_app.api_key
sensitive = true
}
output "default_host_name" {
value = module.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
}