Skip to content

Commit

Permalink
Fix dict in Ansible --extra-vars
Browse files Browse the repository at this point in the history
  • Loading branch information
dometto committed Nov 13, 2024
1 parent a6aa7b9 commit 7a5257b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ubuntu/jammy-nginx/src-ubuntu-nginx.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,11 @@ build {
"--skip-tags",
"molecule-notest,molecule-idempotence-notest",
"--extra-vars",
"rsc_nginx_authorization_endpoint=localhost rsc_nginx_user_info_endpoint=http://localhost rsc_nginx_service_url=http://localhost rsc_nginx_oauth2_application={client_id: foo}",
"rsc_nginx_authorization_endpoint=localhost rsc_nginx_user_info_endpoint=http://localhost rsc_nginx_service_url=http://localhost",
"--extra-vars",
"{nginx_enable_ssl: False, nginx_enable_auth: True}"
"{nginx_enable_ssl: False, nginx_enable_auth: True}",
"--extra-vars",
"{rsc_nginx_oauth2_application: {client_id: 'foo'} }"
])
}

Expand Down

0 comments on commit 7a5257b

Please sign in to comment.