Skip to content

Commit b7e0afd

Browse files
fix: fix the output value of custom resolver id (#1023)
1 parent b4202aa commit b7e0afd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ output "dns_instance_id" {
174174

175175
output "dns_custom_resolver_id" {
176176
description = "The ID of the DNS Custom Resolver."
177-
value = (var.enable_hub && !var.skip_custom_resolver_hub_creation) ? one(ibm_dns_custom_resolver.custom_resolver_hub[*].instance_id) : null
177+
value = (var.enable_hub && !var.skip_custom_resolver_hub_creation) ? one(ibm_dns_custom_resolver.custom_resolver_hub[*].custom_resolver_id) : null
178178
}
179179

180180
## DNS Zone and Records

0 commit comments

Comments
 (0)