11 lines
250 B
YAML
11 lines
250 B
YAML
- hosts: ansible
|
|
vars_files:
|
|
- vars.yaml
|
|
tasks:
|
|
- name: Display 1st Value
|
|
debug:
|
|
msg: "{{ http_port }}"
|
|
- name: Display 2nd Value
|
|
debug:
|
|
msg: "{{ server_name }}"
|
|
# Can be used with the inline specification" |