playbook 之 内置变量
可以通过 ansible 127.0.0.1 -m setup
查看支持的内置变量
- hosts: 127.0.0.1
tasks:
- name: debug
debug:
msg: "hostname: {{ ansible_fqdn }} ip: {{ ansible_default_ipv4.address }} 内存:{{ ansible_memtotal_mb }} cpu核心: {{ ansible_processor_vcpus }} 系统版本:{{ ansible_os_family }} {{ ansible_distribution }} {{ ansible_distribution_major_version }}
资产清单中配置的ip: {{inventory_hostname }}"