diff options
author | Michael Gugino <mgugino@redhat.com> | 2017-09-27 10:03:46 -0400 |
---|---|---|
committer | Michael Gugino <mgugino@redhat.com> | 2017-09-27 10:03:46 -0400 |
commit | fc88b4d0676c02199bf6e09223c0e806941344e8 (patch) | |
tree | 25d214f4e2f4962459737ab44cb2c7098a35f9e3 | |
parent | 5afef2e7b29813760aa7b4f42013aebe16d08ec8 (diff) | |
download | openshift-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
-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 |