@ -20,18 +20,25 @@ short_description: Manage an AWS VPC Internet gateway
description :
description :
- Manage an AWS VPC Internet gateway
- Manage an AWS VPC Internet gateway
version_added : " 2.0 "
version_added : " 2.0 "
author : Robert Estelle , @erydo
author : Robert Estelle ( @erydo )
options :
options :
vpc_id :
vpc_id :
description :
description :
- The VPC ID for the VPC in which to manage the Internet Gateway .
- The VPC ID for the VPC in which to manage the Internet Gateway .
required : true
required : true
default : null
default : null
region :
description :
- The AWS region to use . If not specified then the value of the EC2_REGION environment variable , if any , is used . See U ( http : / / docs . aws . amazon . com / general / latest / gr / rande . html #ec2_region)
required : false
default : null
aliases : [ ' aws_region ' , ' ec2_region ' ]
state :
state :
description :
description :
- Create or terminate the IGW
- Create or terminate the IGW
required : false
required : false
default : present
default : present
choices : [ ' present ' , ' absent ' ]
extends_documentation_fragment : aws
extends_documentation_fragment : aws
'''
'''
@ -39,16 +46,13 @@ EXAMPLES = '''
# Note: These examples do not set authentication details, see the AWS Guide for details.
# Note: These examples do not set authentication details, see the AWS Guide for details.
# Ensure that the VPC has an Internet Gateway.
# Ensure that the VPC has an Internet Gateway.
# The Internet Gateway ID is can be accessed via {{igw.gateway_id}} for use
# The Internet Gateway ID is can be accessed via {{igw.gateway_id}} for use in setting up NATs etc.
# in setting up NATs etc.
ec2_vpc_igw :
local_action :
vpc_id : vpc - abcdefgh
module : ec2_vpc_igw
vpc_id : { { vpc . vpc_id } }
region : { { vpc . vpc . region } }
state : present
state : present
register : igw
register : igw
'''
'''
import sys # noqa
import sys # noqa
@ -117,7 +121,7 @@ def main():
argument_spec . update (
argument_spec . update (
dict (
dict (
vpc_id = dict ( required = True ) ,
vpc_id = dict ( required = True ) ,
state = dict ( choices= [ ' present ' , ' absent ' ] , default = ' present ' )
state = dict ( default= ' present ' , choices= [ ' present ' , ' absent ' ] )
)
)
)
)