There was an error while loading. Please reload this page.
1 parent f0e4483 commit 3486db7Copy full SHA for 3486db7
terraform-modules/aws/vpc/main.tf
@@ -23,6 +23,8 @@ module "vpc" {
23
enable_dns_hostnames = var.enable_dns_hostnames
24
enable_dns_support = var.enable_dns_support
25
26
+ create_elasticache_subnet_route_table = var.create_elasticache_subnet_route_table
27
+
28
public_subnet_tags = {
29
"kubernetes.io/cluster/${var.cluster_name}" = "shared"
30
"kubernetes.io/role/elb" = "1"
terraform-modules/aws/vpc/variables.tf
@@ -74,3 +74,9 @@ variable "external_nat_ip_ids" {
74
type = list(string)
75
default = []
76
}
77
78
+variable "create_elasticache_subnet_route_table" {
79
+ description = "Controls if separate route table for elasticache should be created"
80
+ type = bool
81
+ default = false
82
+}
0 commit comments