Skip to content

Commit

Permalink
Remove quotes from arguments (Guimove#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
schneiderderek authored Oct 11, 2022
1 parent 3266c47 commit 1d5dac9
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@ Usage

```hcl
module "bastion" {
"source" = "Guimove/bastion/aws"
"bucket_name" = "my_famous_bucket_name"
"region" = "eu-west-1"
"vpc_id" = "my_vpc_id"
"is_lb_private" = "true|false"
"bastion_host_key_pair" = "my_key_pair"
"create_dns_record" = "true|false"
"hosted_zone_id" = "my.hosted.zone.name."
"bastion_record_name" = "bastion.my.hosted.zone.name."
"bastion_iam_policy_name" = "myBastionHostPolicy"
"elb_subnets" = [
source = "Guimove/bastion/aws"
bucket_name = "my_famous_bucket_name"
region = "eu-west-1"
vpc_id = "my_vpc_id"
is_lb_private = "true|false"
bastion_host_key_pair = "my_key_pair"
create_dns_record = "true|false"
hosted_zone_id = "my.hosted.zone.name."
bastion_record_name = "bastion.my.hosted.zone.name."
bastion_iam_policy_name = "myBastionHostPolicy"
elb_subnets = [
"subnet-id1a",
"subnet-id1b"
]
"auto_scaling_group_subnets" = [
auto_scaling_group_subnets = [
"subnet-id1a",
"subnet-id1b"
]
Expand Down

0 comments on commit 1d5dac9

Please sign in to comment.