30 lines
546 B
YAML
30 lines
546 B
YAML
- hosts: localhost
|
|
gather_facts: no
|
|
tasks:
|
|
|
|
- name: Verify correct usage of parameter
|
|
assert:
|
|
that:
|
|
- nombre is defined
|
|
- nombre|length > 3
|
|
fail_msg: 'Debe definir una variable "nombre"'
|
|
|
|
- hosts: localhost
|
|
gather_facts: yes
|
|
user: sistemas
|
|
roles:
|
|
- lxchost
|
|
vars:
|
|
dominio: agofer.net
|
|
dnsalias: externo2
|
|
|
|
- hosts: nginx
|
|
gather_facts: yes
|
|
roles:
|
|
- nginxproxy
|
|
vars:
|
|
dominio: agofer.net
|
|
ansible_python_interpreter: python3
|
|
ansible_connection: lxd
|
|
ansible_host: nginx
|