12 lines
222 B
YAML
12 lines
222 B
YAML
|
---
|
||
|
|
||
|
- hosts: "{{ ip_addr }}"
|
||
|
become: yes
|
||
|
become_method: sudo
|
||
|
gather_facts: no
|
||
|
|
||
|
tasks:
|
||
|
|
||
|
- name: "[CREATE AWX-USER] Create awx user and config ssh-key"
|
||
|
import_role:
|
||
|
name: create-awx-user-and-config
|