Skip to content

Commit

Permalink
Add no_log: False
Browse files Browse the repository at this point in the history
Signed-off-by: Alina Buzachis <abuzachis@redhat.com>
  • Loading branch information
alinabuzachis authored and tremble committed May 9, 2023
1 parent 3a75d1c commit 8dea8ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion plugins/modules/backup_selection.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,9 @@ def main():
type="list",
elements="dict",
options=dict(
condition_type=dict(type="str"), condition_key=dict(type="str"), condition_value=dict(type="str")
condition_type=dict(type="str"),
condition_key=dict(type="str", no_log=False),
condition_value=dict(type="str"),
),
),
state=dict(default="present", choices=["present", "absent"]),
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/targets/backup_selection/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
description: "Ansible AWS Backup Role"
managed_policy:
- "arn:aws:iam::aws:policy/service-role/AWSBackupServiceRolePolicyForBackup"
wait: true
wait: true
register: iam_role

# Wait for the role to be created
Expand Down

0 comments on commit 8dea8ea

Please sign in to comment.