From 27dba4b5787480745ad09d9c333876c88cb1cf06 Mon Sep 17 00:00:00 2001 From: Tom Archer Date: Thu, 30 Mar 2023 11:22:14 -0700 Subject: [PATCH] Added CDN profile name to outputs --- quickstart/101-cdn-with-custom-origin/outputs.tf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 }