From 1d5dac97f39e804878af5a00ff774ec63dd3c7e1 Mon Sep 17 00:00:00 2001 From: Derek Schneider Date: Tue, 11 Oct 2022 13:09:32 -0400 Subject: [PATCH] Remove quotes from arguments (#139) --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 33ea79f..e7b4a12 100644 --- a/README.md +++ b/README.md @@ -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" ]