diff --git a/infra/frontend/service/outputs.tf b/infra/frontend/service/outputs.tf index 9cc2951a2..e72777659 100644 --- a/infra/frontend/service/outputs.tf +++ b/infra/frontend/service/outputs.tf @@ -3,10 +3,10 @@ output "service_endpoint" { value = module.service.public_endpoint } -output "cdn_endpoint" { - description = "The CDN endpoint for the service." - value = module.service.cdn_endpoint -} +# output "cdn_endpoint" { +# description = "The CDN endpoint for the service." +# value = module.service.cdn_endpoint +# } output "service_cluster_name" { value = module.service.cluster_name diff --git a/infra/modules/service/outputs.tf b/infra/modules/service/outputs.tf index 1ba1e5599..7bf51f6fb 100644 --- a/infra/modules/service/outputs.tf +++ b/infra/modules/service/outputs.tf @@ -3,10 +3,10 @@ output "public_endpoint" { value = var.enable_load_balancer ? "http://${aws_lb.alb[0].dns_name}" : null } -output "cdn_endpoint" { - description = "The CDN endpoint for the service." - value = var.enable_cdn ? aws_cloudfront_distribution.cdn[0].domain_name : null -} +# output "cdn_endpoint" { +# description = "The CDN endpoint for the service." +# value = var.enable_cdn ? aws_cloudfront_distribution.cdn[0].domain_name : null +# } output "cluster_name" { value = aws_ecs_cluster.cluster.name