Skip to content

Instantly share code, notes, and snippets.

@nivleshc
Created March 12, 2019 04:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nivleshc/2175d449738f9c612e7332e371436987 to your computer and use it in GitHub Desktop.
Save nivleshc/2175d449738f9c612e7332e371436987 to your computer and use it in GitHub Desktop.
Piece 6 of Ansible-create-AWS-environment.yml file
- name: create private subnet in AZ {{ az_in_region.availability_zones[1].zone_name }}
ec2_vpc_subnet:
state: present
cidr: 172.32.2.0/24
az: "{{ az_in_region.availability_zones[1].zone_name }}"
vpc_id: "{{ ansibleVPC.vpc.id }}"
region: "{{ vpc_region }}"
resource_tags:
Name: private subnet
register: private_subnet
- name: show private subnet details
debug: var=private_subnet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment