Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PR #634/c06d77c9 backport][stable-3] Improve doc to show support for IPv6 CIDR block #751

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions plugins/modules/ec2_vpc_route_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,13 @@
type: str
routes:
description:
- >
List of routes in the route table.
- >
Routes are specified as dicts containing the keys 'dest' and one of 'gateway_id',
'instance_id', 'network_interface_id', or 'vpc_peering_connection_id'.
- >
The value of 'dest' is used for the destination match. It may be a IPv4 CIDR block
- List of routes in the route table.
- Routes are specified as dicts containing the keys C(dest) and one of C(gateway_id),
C(instance_id), C(network_interface_id), or C(vpc_peering_connection_id).
- The value of C(dest) is used for the destination match. It may be a IPv4 CIDR block
or a IPv6 CIDR block.
- >
If 'gateway_id' is specified, you can refer to the VPC's IGW by using the value 'igw'.
- >
Routes are required for present states.
- If I(gateway_id) is specified, you can refer to the VPC's IGW by using the value C(igw).
- Routes are required for present states.
type: list
elements: dict
state:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@
lookup: id
purge_tags: yes
tags:
Name: Public routeroute_spec table
Name: Public route table
Updated: new_tag
check_mode: true
register: check_mode_results
Expand Down