From 4fa00e564786f26a5271f50846805a364617a715 Mon Sep 17 00:00:00 2001 From: KF Date: Thu, 6 Oct 2022 15:27:44 +0800 Subject: [PATCH] UPD: including list id in description --- modules/compute/security-groups/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/compute/security-groups/main.tf b/modules/compute/security-groups/main.tf index 2e86ce6..189a435 100644 --- a/modules/compute/security-groups/main.tf +++ b/modules/compute/security-groups/main.tf @@ -43,6 +43,6 @@ resource "aws_security_group_rule" "rules" { from_port = each.value.from_port to_port = each.value.to_port type = each.value.type - description = each.value.description + description = "${each.value.description} (${each.value.sg_name}.${each.value.rule_key})" }