main.yml - ansible-roles - A collection of ansible roles I have created over the years.
 (HTM) git clone git://jay.scot/ansible-roles
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       main.yml (320B)
       ---
            1 ---
            2 - name: run pre-tasks
            3   include: pre_tasks.yml
            4 
            5 - name: create VPC
            6   include: create_vpc.yml
            7 
            8 - name: create Subnets
            9   include: create_subnets.yml
           10 
           11 - name: create NAT gateway
           12   include: create_nat_gateway.yml
           13   when: vpc.nat_gateway_subnet_name is defined
           14 
           15 - name: create routing tables
           16   include: create_routes.yml