summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenny Woodson <kwoodson@redhat.com>2017-09-27 10:07:20 -0400
committerGitHub <noreply@github.com>2017-09-27 10:07:20 -0400
commit49858c9ce01ae139dc4c6e0592e4fb3a1875ba2d (patch)
tree25d214f4e2f4962459737ab44cb2c7098a35f9e3
parent5afef2e7b29813760aa7b4f42013aebe16d08ec8 (diff)
parentfc88b4d0676c02199bf6e09223c0e806941344e8 (diff)
downloadopenshift-49858c9ce01ae139dc4c6e0592e4fb3a1875ba2d.tar.gz
openshift-49858c9ce01ae139dc4c6e0592e4fb3a1875ba2d.tar.bz2
openshift-49858c9ce01ae139dc4c6e0592e4fb3a1875ba2d.tar.xz
openshift-49858c9ce01ae139dc4c6e0592e4fb3a1875ba2d.zip
Merge pull request #5553 from mgugino-upstream-stage/provisioning-typos
Fix missing quotes on openshift_aws_build_ami_ssh_user default
-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