Skip to content

Commit

Permalink
Add more ouputs
Browse files Browse the repository at this point in the history
  • Loading branch information
rizaldiantoro committed Nov 12, 2024
1 parent 5003b0d commit d863999
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

0 comments on commit d863999

Please sign in to comment.