Files
terraform/quickstart/101-storage-account-with-static-website/outputs.tf
Tom Archer aad151de90 User Story 177223 (#269)
* Added output of endpoint; Renamed readme
2023-11-17 10:22:05 +08:00

11 lines
261 B
HCL

output "resource_group_name" {
value = azurerm_resource_group.rg.name
}
output "storage_account_name" {
value = azurerm_storage_account.storage_account.name
}
output "primary_web_host" {
value = azurerm_storage_account.storage_account.primary_web_host
}