From 506d1df22c69481d22213d8551f69e7100b9089d Mon Sep 17 00:00:00 2001 From: whiter Date: Mon, 31 Aug 2015 17:39:13 +0200 Subject: [PATCH] Documentation examples fix --- cloud/amazon/ec2_vpc_subnet_facts.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cloud/amazon/ec2_vpc_subnet_facts.py b/cloud/amazon/ec2_vpc_subnet_facts.py index a865d35f6ab..c3c8268579a 100644 --- a/cloud/amazon/ec2_vpc_subnet_facts.py +++ b/cloud/amazon/ec2_vpc_subnet_facts.py @@ -46,17 +46,17 @@ EXAMPLES = ''' # Gather facts about a particular VPC subnet using ID - ec2_vpc_subnet_facts: filters: - - subnet-id: subnet-00112233 + subnet-id: subnet-00112233 # Gather facts about any VPC subnet with a tag key Name and value Example - ec2_vpc_subnet_facts: filters: - - "tag:Name": Example + "tag:Name": Example # Gather facts about any VPC subnet within VPC with ID vpc-abcdef00 - ec2_vpc_subnet_facts: filters: - - vpc-id: vpc-abcdef00 + vpc-id: vpc-abcdef00 '''