Skip to content

Commit 4a01d84

Browse files
authored
Merge pull request #1 from naineel/master
A typo I came across and missing a default parameter in the docs
2 parents a2f183f + 3519a28 commit 4a01d84

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

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

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)