Merge pull request #208 from TomArcherMsft/fix-cdn-sample

Added CDN profile name to outputs
This commit is contained in:
Mark Gray (MSFT) 2023-04-04 11:43:08 -07:00 committed by GitHub
commit 8d0f0dd09d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,10 +2,14 @@ output "resource_group_name" {
value = azurerm_resource_group.rg.name value = azurerm_resource_group.rg.name
} }
output "cdn_profile_name" {
value = azurerm_cdn_profile.profile.name
}
output "cdn_endpoint_endpoint_name" { output "cdn_endpoint_endpoint_name" {
value = azurerm_cdn_endpoint.endpoint.name value = azurerm_cdn_endpoint.endpoint.name
} }
output "azurerm_cdn_endpoint_fqdn" { output "cdn_endpoint_fqdn" {
value = azurerm_cdn_endpoint.endpoint.fqdn value = azurerm_cdn_endpoint.endpoint.fqdn
} }