diff --git a/quickstart/101-cdn-with-custom-origin/outputs.tf b/quickstart/101-cdn-with-custom-origin/outputs.tf index 558481f9..bee9f585 100644 --- a/quickstart/101-cdn-with-custom-origin/outputs.tf +++ b/quickstart/101-cdn-with-custom-origin/outputs.tf @@ -2,10 +2,14 @@ output "resource_group_name" { value = azurerm_resource_group.rg.name } +output "cdn_profile_name" { + value = azurerm_cdn_profile.profile.name +} + output "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 }