diff --git a/infra/subnet.tf b/infra/subnet.tf index f3c1fb5..328562f 100644 --- a/infra/subnet.tf +++ b/infra/subnet.tf @@ -9,6 +9,7 @@ resource "aws_subnet" "crete_subnet" { tags = { Name = "Crete Subnet - Internal" + Description = "Main subnet for EC2 and Alpha-LB" } } @@ -16,4 +17,8 @@ resource "aws_subnet" "delphi" { vpc_id = aws_vpc.athens_vpc.id cidr_block = "10.0.2.0/24" availability_zone = "us-west-1c" + tags = { + Name = "Delphi Subnet - Internal" + Description = "Secondary subnet for the Alpha-LB mostly" + } }