Skip to content

Commit

Permalink
🐛 fix(outputs): use resource refs instead of string interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Sep 19, 2024
1 parent 2301ee4 commit 7fce433
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ Change logs are auto-generated with commitizen.

| Name | Description |
|------|-------------|
| <a name="output_cluster_domain"></a> [cluster\_domain](#output\_cluster\_domain) | DNS Zone Name |
| <a name="output_cluster_domain_id"></a> [cluster\_domain\_id](#output\_cluster\_domain\_id) | DNS Zone ID |
| <a name="output_cluster_domain_name"></a> [cluster\_domain\_name](#output\_cluster\_domain\_name) | DNS Zone Name |
| <a name="output_cluster_domain_ns"></a> [cluster\_domain\_ns](#output\_cluster\_domain\_ns) | DNS Zone Nameservers |
| <a name="output_module_name"></a> [module\_name](#output\_module\_name) | The name of this module. |
| <a name="output_module_version"></a> [module\_version](#output\_module\_version) | The version of this module. |
Expand Down
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ output "module_version" {
# Networking information
################################################################################

output "cluster_domain_name" {
output "cluster_domain" {
description = "DNS Zone Name"
value = local.cluster_domain_name
value = aws_route53_zone.cluster_domain.domain
}

output "cluster_domain_id" {
Expand Down

0 comments on commit 7fce433

Please sign in to comment.