From 4a05b6c8bacb6053d531a73aa05c85f4177cfe95 Mon Sep 17 00:00:00 2001 From: Leif Madsen Date: Thu, 28 Jun 2018 13:05:43 -0400 Subject: [PATCH] Fix EC2 example variable naming mismatch (#42048) Fix EC2 example where variable name mismatched usage. +label: docsite_pr --- lib/ansible/modules/cloud/amazon/ec2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/amazon/ec2.py b/lib/ansible/modules/cloud/amazon/ec2.py index e7dc59715e..6f0d08b882 100644 --- a/lib/ansible/modules/cloud/amazon/ec2.py +++ b/lib/ansible/modules/cloud/amazon/ec2.py @@ -359,7 +359,7 @@ EXAMPLES = ''' hosts: localhost gather_facts: False vars: - key_name: my_keypair + keypair: my_keypair instance_type: m1.small security_group: my_securitygroup image: my_ami_id