Commit a674a737 authored by Jose Ernesto Suarez's avatar Jose Ernesto Suarez

Adding outputs

parent 61297c81
...@@ -2,10 +2,6 @@ output "cdn_account_id" { ...@@ -2,10 +2,6 @@ output "cdn_account_id" {
value = local.settings.cdn_account_id value = local.settings.cdn_account_id
description = "Setting value" description = "Setting value"
} }
output "dns_account_id" {
value = local.settings.dns_account_id
description = "Setting value"
}
output "s3_account_id" { output "s3_account_id" {
value = local.settings.s3_account_id value = local.settings.s3_account_id
description = "Setting value" description = "Setting value"
...@@ -46,3 +42,19 @@ output "cloudfront_origin_access_identity_ids"{ ...@@ -46,3 +42,19 @@ output "cloudfront_origin_access_identity_ids"{
description = "The IDS of the origin access identities created" description = "The IDS of the origin access identities created"
value = module.distribution.cloudfront_origin_access_identity_ids value = module.distribution.cloudfront_origin_access_identity_ids
} }
output "cdn_endpoint" {
description = ""
value = module.distribution.cdn_endpoint
}
output "s3_bucket_bucket_domain_name" {
description = ""
value = module.storage.s3_bucket_bucket_domain_name
}
output "acm_certificate_arn" {
description = ""
value = module.certificate.acm_certificate_arn
}
output "s3_bucket_id" {
description = ""
value = module.storage.s3_bucket_id
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment