From 46205594c26db9adeaac8e477610353f0849cdf3 Mon Sep 17 00:00:00 2001 From: Bryan Parry Date: Fri, 14 Feb 2020 09:58:25 -0500 Subject: [PATCH] Fix typos in EC2 VPCE module docs (#67426) --- lib/ansible/modules/cloud/amazon/ec2_vpc_endpoint.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/cloud/amazon/ec2_vpc_endpoint.py b/lib/ansible/modules/cloud/amazon/ec2_vpc_endpoint.py index 9fcb82d5b46..3d6b3fb8f3f 100644 --- a/lib/ansible/modules/cloud/amazon/ec2_vpc_endpoint.py +++ b/lib/ansible/modules/cloud/amazon/ec2_vpc_endpoint.py @@ -17,7 +17,7 @@ short_description: Create and delete AWS VPC Endpoints. description: - Creates AWS VPC endpoints. - Deletes AWS VPC endpoints. - - This module support check mode. + - This module supports check mode. version_added: "2.4" requirements: [ boto3 ] options: @@ -115,7 +115,7 @@ EXAMPLES = ''' - rtb-87654321 register: new_vpc_endpoint -- name: Create new vpc endpoint the default policy +- name: Create new vpc endpoint with the default policy ec2_vpc_endpoint: state: present region: ap-southeast-2 @@ -141,7 +141,7 @@ EXAMPLES = ''' - name: Delete newly created vpc endpoint ec2_vpc_endpoint: state: absent - nat_gateway_id: "{{ new_vpc_endpoint.result['VpcEndpointId'] }}" + vpc_endpoint_id: "{{ new_vpc_endpoint.result['VpcEndpointId'] }}" region: ap-southeast-2 '''