Skip to content

Commit

Permalink
feat: Add domain_endpoint_v2_hosted_zone_id to outputs (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
YanivZl authored Dec 1, 2024
1 parent 017706c commit 7440825
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ No modules.
| <a name="output_domain_dashboard_endpoint_v2"></a> [domain\_dashboard\_endpoint\_v2](#output\_domain\_dashboard\_endpoint\_v2) | V2 domain endpoint for Dashboard that works with both IPv4 and IPv6 addresses, without https scheme |
| <a name="output_domain_endpoint"></a> [domain\_endpoint](#output\_domain\_endpoint) | Domain-specific endpoint used to submit index, search, and data upload requests |
| <a name="output_domain_endpoint_v2"></a> [domain\_endpoint\_v2](#output\_domain\_endpoint\_v2) | V2 domain endpoint that works with both IPv4 and IPv6 addresses, used to submit index, search, and data upload requests |
| <a name="output_domain_endpoint_v2_hosted_zone_id"></a> [domain\_endpoint\_v2\_hosted\_zone\_id](#output\_domain\_endpoint\_v2\_hosted\_zone\_id) | Dual stack hosted zone ID for the domain. |
| <a name="output_domain_id"></a> [domain\_id](#output\_domain\_id) | The unique identifier for the domain |
| <a name="output_outbound_connections"></a> [outbound\_connections](#output\_outbound\_connections) | Map of outbound connections created and their attributes |
| <a name="output_package_associations"></a> [package\_associations](#output\_package\_associations) | Map of package associations created and their attributes |
Expand Down
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ output "domain_dashboard_endpoint_v2" {
value = try(aws_opensearch_domain.this[0].dashboard_endpoint_v2, null)
}

output "domain_endpoint_v2_hosted_zone_id" {
description = "Dual stack hosted zone ID for the domain."
value = try(aws_opensearch_domain.this[0].domain_endpoint_v2_hosted_zone_id, null)
}

################################################################################
# Package Association(s)
################################################################################
Expand Down

0 comments on commit 7440825

Please sign in to comment.