Skip to content

Commit

Permalink
fix: Subnet labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris20030907 committed Aug 20, 2024
1 parent 55049da commit e0aba10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ module "automq_byoc_vpc" {

count = var.create_new_vpc ? 1 : 0
cidr = "10.0.0.0/16"
name = "automq-byoc-vpc-${var.automq_byoc_env_id}"

azs = slice(data.aws_availability_zones.available_azs.names, 0, 3)
public_subnets = ["10.0.0.0/20"]
Expand All @@ -39,7 +40,6 @@ module "automq_byoc_vpc" {
enable_dns_hostnames = true

tags = {
Name = "automq-byoc-vpc-${var.automq_byoc_env_id}"
automqVendor = "automq"
automqEnvironmentID = var.automq_byoc_env_id
}
Expand Down

0 comments on commit e0aba10

Please sign in to comment.