Don't use jinja quote filter on insights username or password

This fixes an issue where a user was trying to use an exclamation mark
in the password. Historically we've used the quote filter but more and
more we're seeing conflicts with special characters
This commit is contained in:
Matthew Jones 2017-03-27 15:40:43 -04:00
parent e5bd641a20
commit 536a3b1647

View File

@ -108,8 +108,8 @@
- name: update project using insights
uri:
url: "{{insights_url}}/r/insights/v1/maintenance?ansible=true"
user: "{{scm_username|quote}}"
password: "{{scm_password|quote}}"
user: "{{scm_username}}"
password: "{{scm_password}}"
force_basic_auth: yes
when: scm_type == 'insights'
register: insights_output