We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55049da commit e0aba10Copy full SHA for e0aba10
aws.tf
@@ -30,6 +30,7 @@ module "automq_byoc_vpc" {
30
31
count = var.create_new_vpc ? 1 : 0
32
cidr = "10.0.0.0/16"
33
+ name = "automq-byoc-vpc-${var.automq_byoc_env_id}"
34
35
azs = slice(data.aws_availability_zones.available_azs.names, 0, 3)
36
public_subnets = ["10.0.0.0/20"]
@@ -39,7 +40,6 @@ module "automq_byoc_vpc" {
39
40
enable_dns_hostnames = true
41
42
tags = {
- Name = "automq-byoc-vpc-${var.automq_byoc_env_id}"
43
automqVendor = "automq"
44
automqEnvironmentID = var.automq_byoc_env_id
45
}
0 commit comments