Updated doco for vpc_subnet

pull/18777/head
whiter 9 years ago committed by Matt Clay
parent d7269d977b
commit 3497f67d28

@ -22,30 +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
az:
default: null
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
required: true
- "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
'''
@ -248,4 +252,4 @@ from ansible.module_utils.ec2 import * # noqa
if __name__ == '__main__':
main()

Loading…
Cancel
Save