From 681c69f8c173afc6bf1fa322c0ca32025bfc07d3 Mon Sep 17 00:00:00 2001 From: Will Thames Date: Mon, 26 Mar 2018 12:18:36 +1000 Subject: [PATCH] Fix the aws_kms_facts module name in module docs (#37902) Forgot to update the examples when the module name changed to have the `aws_` prefix --- lib/ansible/modules/cloud/amazon/aws_kms_facts.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/cloud/amazon/aws_kms_facts.py b/lib/ansible/modules/cloud/amazon/aws_kms_facts.py index c1ae39d2df0..362b1c3d8cc 100644 --- a/lib/ansible/modules/cloud/amazon/aws_kms_facts.py +++ b/lib/ansible/modules/cloud/amazon/aws_kms_facts.py @@ -45,15 +45,15 @@ EXAMPLES = ''' # Note: These examples do not set authentication details, see the AWS Guide for details. # Gather facts about all KMS keys -- kms_facts +- aws_kms_facts # Gather facts about all keys with a Name tag -- kms_facts: +- aws_kms_facts: filters: tag-key: Name # Gather facts about all keys with a specific name -- kms_facts: +- aws_kms_facts: filters: "tag:Name": Example '''