File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ module "alb" {
6262 health_check_protocol = var. health_check_protocol
6363 health_check_interval = var. health_check_interval
6464 health_check_timeout = var. health_check_timeout
65- health_check_healthy_treshold = var. health_check_healthy_treshold
66- health_check_unhealthy_treshold = var. health_check_unhealthy_treshold
65+ health_check_healthy_threshold = var. health_check_healthy_threshold
66+ health_check_unhealthy_threshold = var. health_check_unhealthy_threshold
6767 listener_port = var. listener_port
6868 listener_protocol = var. listener_protocol
6969 listener_type = var. listener_type
Original file line number Diff line number Diff line change @@ -69,12 +69,12 @@ variable "health_check_timeout" {
6969 type = number
7070}
7171
72- variable "health_check_healthy_treshold " {
72+ variable "health_check_healthy_threshold " {
7373 description = " Health check healthy threshold"
7474 type = number
7575}
7676
77- variable "health_check_unhealthy_treshold " {
77+ variable "health_check_unhealthy_threshold " {
7878 description = " Health check unhealthy threshold"
7979 type = number
8080}
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ resource "aws_alb_target_group" "alb_tg" {
3131 protocol = var. health_check_protocol
3232 interval = var. health_check_interval
3333 timeout = var. health_check_timeout
34- healthy_threshold = var. health_check_healthy_treshold
35- unhealthy_threshold = var. health_check_unhealthy_treshold
34+ healthy_threshold = var. health_check_healthy_threshold
35+ unhealthy_threshold = var. health_check_unhealthy_threshold
3636 }
3737
3838 load_balancing_algorithm_type = var. load_balancing_algorithm
Original file line number Diff line number Diff line change @@ -79,12 +79,12 @@ variable "health_check_timeout" {
7979 type = number
8080}
8181
82- variable "health_check_healthy_treshold " {
82+ variable "health_check_healthy_threshold " {
8383 description = " Health check healthy threshold"
8484 type = number
8585}
8686
87- variable "health_check_unhealthy_treshold " {
87+ variable "health_check_unhealthy_threshold " {
8888 description = " Health check unhealthy threshold"
8989 type = number
9090}
Original file line number Diff line number Diff line change @@ -63,8 +63,8 @@ health_check_port = 8080
6363health_check_protocol = " HTTP"
6464health_check_interval = 30
6565health_check_timeout = 5
66- health_check_healthy_treshold = 2
67- health_check_unhealthy_treshold = 2
66+ health_check_healthy_threshold = 2
67+ health_check_unhealthy_threshold = 2
6868
6969# alb_listener
7070listener_port = 80
You can’t perform that action at this time.
0 commit comments