iac: print cloudfront domain

This commit is contained in:
bdeshi 2024-05-17 09:13:12 +06:00
parent 548fc2464c
commit 74e8b81eab
Signed by: bdeshi
GPG Key ID: 410D03DA9A3468E0

View File

@ -13,6 +13,11 @@ output "cloudfront_distribution" {
description = "ID of the created 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" { output "acm_certificate_arn" {
value = aws_acm_certificate.created.arn value = aws_acm_certificate.created.arn
description = "ARN of the created ACM certificate." description = "ARN of the created ACM certificate."