From d40bdd464588a1d971393af7af7a033a52797088 Mon Sep 17 00:00:00 2001 From: whiter Date: Thu, 30 Jul 2015 11:37:01 +1000 Subject: [PATCH] Updated doco for vpc_subnet --- cloud/amazon/ec2_vpc_subnet.py | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/cloud/amazon/ec2_vpc_subnet.py b/cloud/amazon/ec2_vpc_subnet.py index 56efd85841a..f7d96862685 100644 --- a/cloud/amazon/ec2_vpc_subnet.py +++ b/cloud/amazon/ec2_vpc_subnet.py @@ -22,32 +22,34 @@ description: version_added: "2.0" author: Robert Estelle (@erydo) options: - vpc_id: - description: - - VPC ID of the VPC in which to create the subnet. - required: false - default: null - resource_tags: + az: description: - - A dictionary array of resource tags of the form: { tag1: value1, tag2: value2 }. This module identifies a subnet by CIDR and will update the subnet's tags to match. Tags not in this list will be ignored. + - "The availability zone for the subnet. Only required when state=present." required: false default: null cidr: description: - - The CIDR block for the subnet. E.g. 10.0.0.0/16. Only required when state=present." + - "The CIDR block for the subnet. E.g. 10.0.0.0/16. Only required when state=present." required: false default: null - az: + tags: description: - - "The availability zone for the subnet. Only required when state=present." + - "A dictionary array of resource tags of the form: { tag1: value1, tag2: value2 }. This module identifies a subnet by CIDR and will update the subnet's tags to match. Tags not in this list will be ignored." required: false default: null + aliases: [ 'resource_tags' ] state: description: - - Create or remove the subnet + - "Create or remove the subnet" required: false default: present choices: [ 'present', 'absent' ] + vpc_id: + description: + - "VPC ID of the VPC in which to create the subnet." + required: false + default: null + extends_documentation_fragment: aws '''