Skip to content

Commit d863999

Browse files
committed
Add more ouputs
1 parent 5003b0d commit d863999

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

outputs.tf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,3 +246,10 @@ output "egress_security_group_rule_ids" {
246246
for k, v in try(aws_vpc_security_group_egress_rule.this, {}) : k => v
247247
}
248248
}
249+
250+
output "ingress_security_group_rule_ids" {
251+
description = "The ingress security group rule IDs of the cluster"
252+
value = {
253+
for k, v in try(aws_vpc_security_group_rule.this, {}) : k => v
254+
}
255+
}

0 commit comments

Comments
 (0)