Example I currently have in place:

- name: Set up Internal Subnet route table
  ec2_vpc_route_table:
    vpc_id: "{{ vpc.vpc_id }}"
    region: "{{ aws_region }}"
    subnets:
      - "{{ subnet_internal }}"
    routes:
      - dest: 0.0.0.0/0
        instance_id: "{{ nat.instance[0]id }}"
  when: nat|changed
  tags:
    - vpcsetup

On Wednesday, February 3, 2016 at 1:10:54 AM UTC-5, Christian Del Pino 
wrote:
>
> Hello there. Currently using ansible 2.0.0.2-1ppa~vivid on ubuntu and I am 
> having issues using one of the aws modules. Getting the following when 
> trying to use the ec2_vpc_route_table module: *'ERROR: 
> ec2_vpc_route_table is not a legal parameter in an Ansible task or handler'*. 
> does this mean the this extra module is not installed?
>

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/27fd71aa-bd64-493f-9d0f-ce70e3d32d2f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to