Added subnet tagging.

reviewable/pr18780/r1
Alexander Popov 11 years ago
parent 6ccdf7cba5
commit 527295b883

@ -277,7 +277,10 @@ def create_vpc(module, vpc_conn):
add_subnet = False
if add_subnet:
try:
vpc_conn.create_subnet(vpc.id, subnet['cidr'], subnet.get('az', None))
created_subnet = vpc_conn.create_subnet(vpc.id, subnet['cidr'], subnet.get('az', None))
subnet_tags = subnet.get('tags', None)
if subnet_tags:
vpc_conn.create_tags(created_subnet.id, subnet_tags)
changed = True
except EC2ResponseError, e:
module.fail_json(msg='Unable to create subnet {0}, error: {1}'.format(subnet['cidr'], e))

Loading…
Cancel
Save