From d863999994f8e3ea661318db211c1c47f8c9fe33 Mon Sep 17 00:00:00 2001 From: Rizal Diantoro Date: Tue, 12 Nov 2024 11:22:25 +0700 Subject: [PATCH] Add more ouputs --- outputs.tf | 7 +++++++ 1 file changed, 7 insertions(+) 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 + } +}