diff --git a/outputs.tf b/outputs.tf index 9957c40..dc4eb31 100644 --- a/outputs.tf +++ b/outputs.tf @@ -246,3 +246,10 @@ output "egress_security_group_rule_ids" { for k, v in try(aws_vpc_security_group_egress_rule.this, {}) : k => v } } + +output "ingress_security_group_rule_ids" { + description = "The ingress security group rule IDs of the cluster" + value = { + for k, v in try(aws_vpc_security_group_rule.this, {}) : k => v + } +}