File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -57,10 +57,10 @@ module "alb_app" {
5757 health_check = {
5858 healthy_threshold = 2
5959 unhealthy_threshold = 2
60- timeout = 10
60+ timeout = 3
6161 port = var.backend_app_port
6262 path = " /nginx-health"
63- interval = 30
63+ interval = 5
6464 }
6565 }
6666 ]
Original file line number Diff line number Diff line change @@ -142,12 +142,12 @@ variable "vpce_details" {
142142
143143variable "private_subnet_tags" {
144144 type = map (any )
145- default = {}
145+ default = {Tier = " private " }
146146}
147147
148148variable "public_subnet_tags" {
149149 type = map (any )
150- default = {}
150+ default = {Tier = " public " }
151151}
152152
153153variable "vpc_tags" {
Original file line number Diff line number Diff line change @@ -34,13 +34,13 @@ variable "ebs_extra_tags" {
3434
3535variable "private_subnet_tags" {
3636 type = map (any )
37- default = {}
37+ default = {Tier = " private " }
3838 description = " The extra tags to be applied to the private subnets"
3939}
4040
4141variable "public_subnet_tags" {
4242 type = map (any )
43- default = {}
43+ default = {Tier = " public " }
4444 description = " The extra tags to be applied to the public subnets"
4545}
4646
You can’t perform that action at this time.
0 commit comments