summaryrefslogtreecommitdiffstats
path: root/playbooks
diff options
context:
space:
mode:
authorMichael Gugino <mgugino@redhat.com>2017-09-27 10:03:46 -0400
committerMichael Gugino <mgugino@redhat.com>2017-09-27 10:03:46 -0400
commitfc88b4d0676c02199bf6e09223c0e806941344e8 (patch)
tree25d214f4e2f4962459737ab44cb2c7098a35f9e3 /playbooks
parent5afef2e7b29813760aa7b4f42013aebe16d08ec8 (diff)
downloadopenshift-fc88b4d0676c02199bf6e09223c0e806941344e8.tar.gz
openshift-fc88b4d0676c02199bf6e09223c0e806941344e8.tar.bz2
openshift-fc88b4d0676c02199bf6e09223c0e806941344e8.tar.xz
openshift-fc88b4d0676c02199bf6e09223c0e806941344e8.zip
Fix missing quotes on openshift_aws_build_ami_ssh_user default
Diffstat (limited to 'playbooks')
-rw-r--r--playbooks/aws/openshift-cluster/build_ami.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/aws/openshift-cluster/build_ami.yml b/playbooks/aws/openshift-cluster/build_ami.yml
index 828fa9400..86b2a2544 100644
--- a/playbooks/aws/openshift-cluster/build_ami.yml
+++ b/playbooks/aws/openshift-cluster/build_ami.yml
@@ -52,7 +52,7 @@
tasks:
- name: set the user to perform installation
set_fact:
- ansible_ssh_user: "{{ openshift_aws_build_ami_ssh_user | default(root) }}"
+ ansible_ssh_user: "{{ openshift_aws_build_ami_ssh_user | default('root') }}"
- name: normalize groups
include: ../../byo/openshift-cluster/initialize_groups.yml