File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
docker-openvpn-server/cluster Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 11provider "template" {
2- version = " ~> 1.0 .0"
2+ version = " >= 0.1 .0"
33}
44
55locals {
@@ -53,6 +53,6 @@ module "cluster" {
5353 instance_tags = " ${ var . instance_tags } "
5454 max_size = 2
5555 min_size = 1
56- hc_grace_period = 300
56+ hc_grace_period = " ${ var . hc_grace_period } "
5757 target_group_arns = " ${ var . lb_target_group_arns } "
5858}
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ variable "assign_eip" {
121121variable "route_cidrs" {
122122 type = " string"
123123 description = " Routes for the VPN server to expose"
124- default = " "
124+ default = " 10.8.0.0/24 "
125125}
126126
127127variable "s3_bucket_prefix_for_service" {
@@ -165,3 +165,9 @@ variable "lb_target_group_arns" {
165165 description = " target group arns to associate with the NLB, if enable_lb == true"
166166 default = []
167167}
168+
169+ variable "hc_grace_period" {
170+ type = " string"
171+ description = " Health check grace period for ASG"
172+ default = " 300"
173+ }
You can’t perform that action at this time.
0 commit comments