Browse Source

Merge pull request #5794 from kwoodson/bz1501271

[bz1501271] Attempt to use ami ssh user and default to ansible_ssh_user.
Scott Dodson 7 years ago
parent
commit
fa33e24acd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      playbooks/aws/openshift-cluster/build_ami.yml

+ 1 - 1
playbooks/aws/openshift-cluster/build_ami.yml

@@ -26,7 +26,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(ansible_ssh_user) }}"
       openshift_node_bootstrap: True
 
 # This is the part that installs all of the software and configs for the instance