We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5003b0d commit d863999Copy full SHA for d863999
outputs.tf
@@ -246,3 +246,10 @@ output "egress_security_group_rule_ids" {
246
for k, v in try(aws_vpc_security_group_egress_rule.this, {}) : k => v
247
}
248
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