Files
noahspan-root/infrastructure/modules/static_web_app/outputs.tf
2024-05-19 15:25:41 -05:00

11 lines
248 B
HCL

output "id" {
value = azurerm_static_web_app.static_web_app.id
}
output "api_key" {
value = azurerm_static_web_app.static_web_app.api_key
}
output "default_host_name" {
value = azurerm_static_web_app.static_web_app.default_host_name
}