mirror of
https://github.com/Apress/Beginning-Ansible-Concepts-and-Application.git
synced 2024-11-09 17:07:44 +01:00
18 lines
368 B
YAML
18 lines
368 B
YAML
|
---
|
||
|
- hosts: webservers
|
||
|
become: true
|
||
|
gather_facts: no
|
||
|
tasks:
|
||
|
- name: Raw value for inventory_hostname
|
||
|
debug:
|
||
|
msg: "{{ inventory_hostname }}"
|
||
|
|
||
|
- name: Uppercase inventory_hostname
|
||
|
debug:
|
||
|
msg: "{{ inventory_hostname | upper }}"
|
||
|
|
||
|
- name: Raw value for inventory_hostname
|
||
|
debug:
|
||
|
msg: "{{ inventory_hostname }}"
|
||
|
|