summaryrefslogtreecommitdiffstats
path: root/playbooks/aws/openshift-cluster/tasks/launch_instances.yml
diff options
context:
space:
mode:
authorAndrew Butcher <abutcher@redhat.com>2016-04-25 14:06:38 -0400
committerAndrew Butcher <abutcher@redhat.com>2016-04-25 15:25:08 -0400
commita5386b0f51a2b20f0b5c382663bb5827438da437 (patch)
treeedd2459e6075867d8ccb13fc795bc00f076036ce /playbooks/aws/openshift-cluster/tasks/launch_instances.yml
parent12c2d75d84f76ddd806bffa4e3e4acc0c2f24f95 (diff)
downloadopenshift-a5386b0f51a2b20f0b5c382663bb5827438da437.tar.gz
openshift-a5386b0f51a2b20f0b5c382663bb5827438da437.tar.bz2
openshift-a5386b0f51a2b20f0b5c382663bb5827438da437.tar.xz
openshift-a5386b0f51a2b20f0b5c382663bb5827438da437.zip
Replace deprecated sudo with become.
Diffstat (limited to 'playbooks/aws/openshift-cluster/tasks/launch_instances.yml')
-rw-r--r--playbooks/aws/openshift-cluster/tasks/launch_instances.yml4
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 63be06ecf..cd2146884 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_sudo: "{{ deployment_vars[deployment_type].sudo }}"
+ ansible_become: "{{ deployment_vars[deployment_type].sudo }}"
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_sudo: "{{ deployment_vars[deployment_type].sudo }}"
+ ansible_become: "{{ deployment_vars[deployment_type].sudo }}"
groups: nodes_to_add
ec2_private_ip_address: "{{ item.1.private_ip }}"
ec2_ip_address: "{{ item.1.public_ip }}"