Skip to content

Commit d53947d

Browse files
authored
Merge pull request #48 from datafold/gerard-p-3908-improve-resilience-of-the-deployment
fix: Reduce timeouts
2 parents 84b6236 + 37ccb5c commit d53947d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
0 Bytes
Binary file not shown.

modules/load_balancer/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
]

modules/networking/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,12 @@ variable "vpce_details" {
142142

143143
variable "private_subnet_tags" {
144144
type = map(any)
145-
default = {}
145+
default = {Tier="private"}
146146
}
147147

148148
variable "public_subnet_tags" {
149149
type = map(any)
150-
default = {}
150+
default = {Tier="public"}
151151
}
152152

153153
variable "vpc_tags" {

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ variable "ebs_extra_tags" {
3434

3535
variable "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

4141
variable "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

0 commit comments

Comments
 (0)