File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -36,14 +36,15 @@ module "bastion" {
3636 "bucket_name" = "my_famous_bucket_name"
3737 "region" = "eu-west-1"
3838 "vpc_id" = "my_vpc_id"
39+ "is_lb_private" = "true|false"
3940 "bastion_host_key_pair" = "my_key_pair"
4041 "hosted_zone_name" = "my.hosted.zone.name."
4142 "bastion_record_name" = "bastion.my.hosted.zone.name."
4243 "elb_subnets" = [
4344 "subnet-id1a",
4445 "subnet-id1b"
4546 ]
46- "auto_scalling_group_subnets " = [
47+ "auto_scaling_group_subnets " = [
4748 "subnet-id1a",
4849 "subnet-id1b"
4950 ]
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ resource "aws_autoscaling_group" "bastion_auto_scaling_group" {
163163 min_size = 2
164164 desired_capacity = 2
165165 vpc_zone_identifier = [
166- " ${ var . auto_scalling_group_subnets } "
166+ " ${ var . auto_scaling_group_subnets } "
167167 ]
168168 default_cooldown = 180
169169 health_check_grace_period = 180
You can’t perform that action at this time.
0 commit comments