15 lines
475 B
HCL
15 lines
475 B
HCL
output "website_bucket_names" {
|
|
description = "Names (ids) of the buckets by domain"
|
|
value = { for k, v in module.static_website : k => v.website_bucket_name }
|
|
}
|
|
|
|
output "bucket_endpoints" {
|
|
description = "Bucket endpoints by domain"
|
|
value = { for k, v in module.static_website : k => v.bucket_endpoint }
|
|
}
|
|
|
|
output "domain_names" {
|
|
description = "Website endpoints by domain"
|
|
value = { for k, v in module.static_website : k => v.domain_name }
|
|
}
|