Commit 9daf5c1b by Feanil Patel

Use double quotes everywhere.

parent 6097e3c0
...@@ -32,11 +32,11 @@ ...@@ -32,11 +32,11 @@
# to the vpc whose subnets and rts are not enumerated here. # to the vpc whose subnets and rts are not enumerated here.
- name: create a vpc - name: create a vpc
local_action: local_action:
module: 'ec2_vpc_local' module: "ec2_vpc_local"
resource_tags: '{{ vpc_tags }}' resource_tags: "{{ vpc_tags }}"
cidr_block: '{{ vpc_cidr }}' cidr_block: "{{ vpc_cidr }}"
region: '{{ vpc_aws_region }}' region: "{{ vpc_aws_region }}"
state: '{{ vpc_state }}' state: "{{ vpc_state }}"
internet_gateway: yes internet_gateway: yes
wait: yes wait: yes
register: created_vpc register: created_vpc
...@@ -100,9 +100,9 @@ ...@@ -100,9 +100,9 @@
- name: create nat instance - name: create nat instance
local_action: local_action:
module: 'ec2' module: "ec2"
state: 'present' state: "present"
wait: "yes" wait: yes
source_dest_check: false source_dest_check: false
region: "{{ vpc_aws_region }}" region: "{{ vpc_aws_region }}"
profile: "{{ vpc_aws_profile }}" profile: "{{ vpc_aws_profile }}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment