Skip to content

Commit 7440825

Browse files
authored
feat: Add domain_endpoint_v2_hosted_zone_id to outputs (#33)
1 parent 017706c commit 7440825

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ No modules.
237237
| <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 |
238238
| <a name="output_domain_endpoint"></a> [domain\_endpoint](#output\_domain\_endpoint) | Domain-specific endpoint used to submit index, search, and data upload requests |
239239
| <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 |
240+
| <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. |
240241
| <a name="output_domain_id"></a> [domain\_id](#output\_domain\_id) | The unique identifier for the domain |
241242
| <a name="output_outbound_connections"></a> [outbound\_connections](#output\_outbound\_connections) | Map of outbound connections created and their attributes |
242243
| <a name="output_package_associations"></a> [package\_associations](#output\_package\_associations) | Map of package associations created and their attributes |

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ output "domain_dashboard_endpoint_v2" {
3232
value = try(aws_opensearch_domain.this[0].dashboard_endpoint_v2, null)
3333
}
3434

35+
output "domain_endpoint_v2_hosted_zone_id" {
36+
description = "Dual stack hosted zone ID for the domain."
37+
value = try(aws_opensearch_domain.this[0].domain_endpoint_v2_hosted_zone_id, null)
38+
}
39+
3540
################################################################################
3641
# Package Association(s)
3742
################################################################################

0 commit comments

Comments
 (0)