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 c62d9be commit e13dcc1Copy full SHA for e13dcc1
aws.tf
@@ -49,6 +49,11 @@ module "automq_byoc_vpc" {
49
enable_dns_support = true
50
enable_dns_hostnames = true
51
52
+ # NAT Gateway
53
+ # if the deploy type is k8s, then enable_nat_gateway is true, single_nat_gateway is true
54
+ enable_nat_gateway = var.automq_byoc_default_deploy_type == "k8s"
55
+ single_nat_gateway = var.automq_byoc_default_deploy_type == "k8s"
56
+
57
tags = {
58
automqVendor = "automq"
59
automqEnvironmentID = var.automq_byoc_env_id
0 commit comments