From 48f33c01a2c0c652c53675e9268d5d6cb46dcf52 Mon Sep 17 00:00:00 2001 From: bdeshi Date: Fri, 17 May 2024 09:13:12 +0600 Subject: [PATCH] iac: print cloudfront domain --- terraform.outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/terraform.outputs.tf b/terraform.outputs.tf index b8b6ba1..77a91b1 100644 --- a/terraform.outputs.tf +++ b/terraform.outputs.tf @@ -13,6 +13,11 @@ output "cloudfront_distribution" { description = "ID of the created CloudFront distribution." } +output "cloudfront_domain" { + value = aws_cloudfront_distribution.created.domain_name + description = "domain name of the created CloudFront distribution." +} + output "acm_certificate_arn" { value = aws_acm_certificate.created.arn description = "ARN of the created ACM certificate."