From fd8e2f238de49da7cb554cb4ecc45d350a68fd57 Mon Sep 17 00:00:00 2001 From: Mohan Boddu Date: Wed, 16 Dec 2020 10:11:23 -0500 Subject: [PATCH] Use underscore instead of dashes Signed-off-by: Mohan Boddu --- roles/rabbitmq_cluster/tasks/apps.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/rabbitmq_cluster/tasks/apps.yml b/roles/rabbitmq_cluster/tasks/apps.yml index 36874e930c..6169cd5aaf 100644 --- a/roles/rabbitmq_cluster/tasks/apps.yml +++ b/roles/rabbitmq_cluster/tasks/apps.yml @@ -174,7 +174,7 @@ delegate_to: "rabbitmq01.iad2.fedoraproject.org" rabbitmq_user: user: centos-odcs-admin - password: "{{ (env == 'production')|ternary(rabbitmq_centos-odcs_admin_password_production, rabbitmq_centos-odcs_admin_password_staging) }}" + password: "{{ (env == 'production')|ternary(rabbitmq_centos_odcs_admin_password_production, rabbitmq_centos_odcs_admin_password_staging) }}" vhost: /centos-odcs configure_priv: .* read_priv: .* @@ -187,7 +187,7 @@ delegate_to: "rabbitmq01.iad2.fedoraproject.org" copy: dest: /root/.centos-odcs-rabbitmqpass - content: "{{ (env == 'production')|ternary(rabbitmq_centos-odcs_admin_password_production, rabbitmq_centos-odcs_admin_password_staging) }}" + content: "{{ (env == 'production')|ternary(rabbitmq_centos_odcs_admin_password_production, rabbitmq_centos_odcs_admin_password_staging) }}" mode: 0600 owner: root group: root