Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PR #1644/10e28fc7 backport][stable-5] ssm_parameter - fix typo in docs #1645

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions changelogs/fragments/1642-ssm_parameter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- ssm_parameter - fix typo in examples ``paramater`` (https://github.com/ansible-collections/community.aws/issues/1642).
12 changes: 6 additions & 6 deletions plugins/modules/ssm_parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,41 +94,41 @@

EXAMPLES = '''
- name: Create or update key/value pair in AWS SSM parameter store
community.aws.ssm_paramater:
community.aws.ssm_parameter:
name: "Hello"
description: "This is your first key"
value: "World"

- name: Delete the key
community.aws.ssm_paramater:
community.aws.ssm_parameter:
name: "Hello"
state: absent

- name: Create or update secure key/value pair with default KMS key (aws/ssm)
community.aws.ssm_paramater:
community.aws.ssm_parameter:
name: "Hello"
description: "This is your first key"
string_type: "SecureString"
value: "World"

- name: Create or update secure key/value pair with nominated KMS key
community.aws.ssm_paramater:
community.aws.ssm_parameter:
name: "Hello"
description: "This is your first key"
string_type: "SecureString"
key_id: "alias/demo"
value: "World"

- name: Always update a parameter store value and create a new version
community.aws.ssm_paramater:
community.aws.ssm_parameter:
name: "overwrite_example"
description: "This example will always overwrite the value"
string_type: "String"
value: "Test1234"
overwrite_value: "always"

- name: Create or update key/value pair in AWS SSM parameter store with tier
community.aws.ssm_paramater:
community.aws.ssm_parameter:
name: "Hello"
description: "This is your first key"
value: "World"
Expand Down