From 3a6d00f81da84ae96e86f1113ad7b1b33744c280 Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Thu, 10 Jul 2014 12:18:35 -0500 Subject: [PATCH] Add note about changing resource_tags to required in ec2_vpc --- library/cloud/ec2_vpc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/cloud/ec2_vpc b/library/cloud/ec2_vpc index 5b0a372619c..baf035ccb37 100644 --- a/library/cloud/ec2_vpc +++ b/library/cloud/ec2_vpc @@ -58,7 +58,7 @@ options: aliases: [] resource_tags: description: - - 'A dictionary array of resource tags of the form: { tag1: value1, tag2: value2 }. Tags in this list are used in conjunction with CIDR block to uniquely identify a VPC in lieu of vpc_id. Therefore, if CIDR/Tag combination does not exits, a new VPC will be created. VPC tags not on this list will be ignored.' + - 'A dictionary array of resource tags of the form: { tag1: value1, tag2: value2 }. Tags in this list are used in conjunction with CIDR block to uniquely identify a VPC in lieu of vpc_id. Therefore, if CIDR/Tag combination does not exits, a new VPC will be created. VPC tags not on this list will be ignored. Prior to 1.7, specifying a resource tag was optional.' required: true default: null aliases: []