Skip to content

Commit

Permalink
Fix the aws_kms_facts module name in module docs (ansible#37902)
Browse files Browse the repository at this point in the history
Forgot to update the examples when the module name changed to
have the `aws_` prefix
  • Loading branch information
willthames authored and jborean93 committed Mar 26, 2018
1 parent ba0ff41 commit 681c69f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/ansible/modules/cloud/amazon/aws_kms_facts.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@
# 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
'''
Expand Down

0 comments on commit 681c69f

Please sign in to comment.