From 67e392e04a5e363c8e0a50ee63ec6ac02407d0f6 Mon Sep 17 00:00:00 2001 From: CodeItchNY <55034161+CodeitchNY@users.noreply.github.com> Date: Sat, 20 Jun 2020 16:36:42 -0400 Subject: [PATCH] change user root to become user: root is a real issue for clouds (not the sponsors) that disable root access out of the gate (AWS) --- intro-ansible/01-introduction/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intro-ansible/01-introduction/deploy.yml b/intro-ansible/01-introduction/deploy.yml index 4333879..197a111 100644 --- a/intro-ansible/01-introduction/deploy.yml +++ b/intro-ansible/01-introduction/deploy.yml @@ -1,6 +1,6 @@ # High level instructions for which tasks apply to which hosts - name: apply local configuration to servers listed in hosts hosts: all - user: root + become: "yes" roles: - common