diff options
author | Andrew Butcher <abutcher@redhat.com> | 2016-04-27 11:04:34 -0400 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2016-04-27 11:04:34 -0400 |
commit | a2f2c884e7aeade992c574ad16954e9fbc665b99 (patch) | |
tree | cbdcb36f86c1c461e0d28c5e64aae0b9184bd8d4 /playbooks/aws/openshift-cluster/tasks | |
parent | 207b5aea8d619acb9622a351f54301c24598b08d (diff) | |
download | openshift-a2f2c884e7aeade992c574ad16954e9fbc665b99.tar.gz openshift-a2f2c884e7aeade992c574ad16954e9fbc665b99.tar.bz2 openshift-a2f2c884e7aeade992c574ad16954e9fbc665b99.tar.xz openshift-a2f2c884e7aeade992c574ad16954e9fbc665b99.zip |
Replace sudo with become when accessing deployment_vars.
Diffstat (limited to 'playbooks/aws/openshift-cluster/tasks')
-rw-r--r-- | playbooks/aws/openshift-cluster/tasks/launch_instances.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/playbooks/aws/openshift-cluster/tasks/launch_instances.yml b/playbooks/aws/openshift-cluster/tasks/launch_instances.yml index cd2146884..323d63443 100644 --- a/playbooks/aws/openshift-cluster/tasks/launch_instances.yml +++ b/playbooks/aws/openshift-cluster/tasks/launch_instances.yml @@ -173,7 +173,7 @@ hostname: "{{ item.0 }}" ansible_ssh_host: "{{ item.1.dns_name }}" ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" - ansible_become: "{{ deployment_vars[deployment_type].sudo }}" + ansible_become: "{{ deployment_vars[deployment_type].become }}" groups: "{{ instance_groups }}" ec2_private_ip_address: "{{ item.1.private_ip }}" ec2_ip_address: "{{ item.1.public_ip }}" @@ -188,7 +188,7 @@ hostname: "{{ item.0 }}" ansible_ssh_host: "{{ item.1.dns_name }}" ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" - ansible_become: "{{ deployment_vars[deployment_type].sudo }}" + ansible_become: "{{ deployment_vars[deployment_type].become }}" groups: nodes_to_add ec2_private_ip_address: "{{ item.1.private_ip }}" ec2_ip_address: "{{ item.1.public_ip }}" |