-
Notifications
You must be signed in to change notification settings - Fork 403
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[PR #1309/29ab90eb backport][stable-4] Add support for check mode to SSM Parameter store This is a backport of PR #1309 as merged into main (29ab90e). SUMMARY Adds support for check_mode Adds basic waiters for create/delete Fixes bug where module wasn't consistently idempotent ISSUE TYPE Bugfix Pull Request Feature Pull Request COMPONENT NAME plugins/modules/aws_ssm_parameter_store.py ADDITIONAL INFORMATION Module was using a deprecated parameter when calling describe_parameters (Filters). This deprecated parameter appears to have some form of caching applied to it and would sometimes return old values. By switching to the ParameterFilters replacement things seem to be more consistent. Reviewed-by: Mark Chappell <None>
- Loading branch information
1 parent
733a1eb
commit 6f21cb9
Showing
3 changed files
with
240 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
minor_changes: | ||
- aws_ssm_parameter_store - added support for check_mode (https://github.com/ansible-collections/community.aws/pull/1309). | ||
bugfixes: | ||
- aws_ssm_parameter_store - fixed bug where module wasn't consistently idempotent (https://github.com/ansible-collections/community.aws/pull/1309). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.