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
This commit is contained in:
Will Thames 2018-03-26 12:18:36 +10:00 committed by Jordan Borean
parent ba0ff415a0
commit 681c69f8c1

View file

@ -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
'''