mirror of
https://github.com/ansible/awx.git
synced 2026-01-27 08:31:28 -03:30
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:
parent
e5bd641a20
commit
536a3b1647
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user