Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
Cleanup sensitive facts before write. Closes #562. (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
chambridge committed Dec 19, 2017
1 parent a7a1ae4 commit d75dd02
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions rho_playbook.yml
Expand Up @@ -28,6 +28,7 @@
- brms
- fuse
- jboss_fuse_on_karaf
- cleanup


- name: write facts first to a variable and then to csv locally
Expand Down
11 changes: 11 additions & 0 deletions roles/cleanup/tasks/main.yml
@@ -0,0 +1,11 @@
---

- name: cleanup ssh fact
set_fact:
ansible_ssh_pass: "********"
when: "ansible_ssh_pass is defined"

- name: cleanup become fact
set_fact:
ansible_become_pass: "********"
when: "ansible_become_pass is defined"

0 comments on commit d75dd02

Please sign in to comment.