diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2017-09-27 10:07:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-27 10:07:20 -0400 |
commit | 49858c9ce01ae139dc4c6e0592e4fb3a1875ba2d (patch) | |
tree | 25d214f4e2f4962459737ab44cb2c7098a35f9e3 | |
parent | 5afef2e7b29813760aa7b4f42013aebe16d08ec8 (diff) | |
parent | fc88b4d0676c02199bf6e09223c0e806941344e8 (diff) | |
download | openshift-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.yml | 2 |
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 |