From 225489f67850cf63e34ccad8c372d29231592d19 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 18 Feb 2025 15:18:20 -0500 Subject: [PATCH] feat: change security group tags, not name --- terraform/network.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/network.tf b/terraform/network.tf index 1d379b0..a93837d 100644 --- a/terraform/network.tf +++ b/terraform/network.tf @@ -29,7 +29,7 @@ module "vpc" { # Only allow HTTP(s) and SSH traffic. Allow full access to internet. resource "aws_security_group" "public_access" { vpc_id = module.vpc.vpc_id - name = "Public Access" + tags = { GroupOf = "Main", GroupType = "Public" } } resource "aws_vpc_security_group_ingress_rule" "ingress" {