Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
fixing password testing
  • Loading branch information
IPvSean committed Jun 11, 2021
1 parent be08329 commit 49a1107
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/f5_setup/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
provider:
server: "{{ ansible_host }}"
user: "{{ ansible_user }}"
password: "Fishf00d!"
password: "{{ admin_password }}"
server_port: 8443
timeout: 300
validate_certs: "no"
Expand All @@ -22,7 +22,7 @@
transport: cli
user: admin
server: "{{ ansible_host }}"
commands: "modify auth user admin password {{admin_password}}"
commands: "modify auth user admin password {{ admin_password }}"
register: change_password
until: change_password is not failed
retries: 5
Expand Down

0 comments on commit 49a1107

Please sign in to comment.