diff options
author | Gerard Lynch <gerard@halberom.co.uk> | 2015-09-21 20:28:42 +0100 |
---|---|---|
committer | Gerard Lynch <gerard@halberom.co.uk> | 2015-09-21 20:28:42 +0100 |
commit | 401bb3f10da517878f792e9a25929df034c78d27 (patch) | |
tree | 3c506614351ae34964a6eca151d80a81ec05fa89 /cloud/amazon/ec2_vpc_route_table.py | |
parent | 6950db5d0109425e05d7e55161b56c77ff1a783b (diff) | |
download | ansible-modules-extras-401bb3f10da517878f792e9a25929df034c78d27.tar.gz |
minor doc fix
Diffstat (limited to 'cloud/amazon/ec2_vpc_route_table.py')
-rw-r--r-- | cloud/amazon/ec2_vpc_route_table.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloud/amazon/ec2_vpc_route_table.py b/cloud/amazon/ec2_vpc_route_table.py index 70f53bad..cc2b5ff8 100644 --- a/cloud/amazon/ec2_vpc_route_table.py +++ b/cloud/amazon/ec2_vpc_route_table.py @@ -53,7 +53,7 @@ options: required: true tags: description: - - "A dictionary array of resource tags of the form: { tag1: value1, tag2: value2 }. Tags in this list are used to uniquely identify route tables within a VPC when the route_table_id is not supplied." + - "A dictionary of resource tags of the form: { tag1: value1, tag2: value2 }. Tags are used to uniquely identify route tables within a VPC when the route_table_id is not supplied." required: false default: null aliases: [ "resource_tags" ] @@ -89,7 +89,7 @@ EXAMPLES = ''' vpc_id: vpc-1245678 region: us-west-1 tags: - - Name: Internal + Name: Internal subnets: - "{{ application_subnet.subnet_id }}" - 'Database Subnet' |