From a5e88ef3a7ca993a96e1f0d1b039d08a39626c27 Mon Sep 17 00:00:00 2001 From: Maxime Mahdavian Date: Mon, 28 Oct 2024 13:58:12 -0400 Subject: [PATCH] Added outputs --- output.tf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/output.tf b/output.tf index b28b04f..45884ee 100644 --- a/output.tf +++ b/output.tf @@ -1,3 +1,18 @@ +output "front-door-object" { + description = "Outputs the entire front door object" + value = azurerm_cdn_frontdoor_profile.frontdoor_profile +} + +output "front-door-id" { + description = "Outputs the front door profile ID" + value = azurerm_cdn_frontdoor_profile.frontdoor_profile.id +} + +output "front-door-name" { + description = "Outputs the front door profile name" + value = azurerm_cdn_frontdoor_profile.frontdoor_profile +} +