Skip to content

Commit

Permalink
docs nitpick and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tremble committed Feb 8, 2023
1 parent 2a06103 commit 569d371
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/1628-secretsmanager_secret-overwrite.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- secretsmanager_secret - added the ``overwrite`` parameter to support only setting the secret if it doesn't exist (https://github.com/ansible-collections/community.aws/pull/1628).
5 changes: 3 additions & 2 deletions plugins/modules/secretsmanager_secret.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,11 @@
overwrite:
description:
- Whether to overwrite an existing secret with the same name.
- If set to True, an existing secret with the same I(name) will be overwritten.
- If set to False, a secret with the given I(name) will only be created if none exists.
- If set to C(True), an existing secret with the same I(name) will be overwritten.
- If set to C(False), a secret with the given I(name) will only be created if none exists.
type: bool
default: True
version_added: 5.3.0
recovery_window:
description:
- Only used if state is absent.
Expand Down

0 comments on commit 569d371

Please sign in to comment.