欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

打印主机所有内置变量

程序员文章站 2022-03-31 19:49:34
...
- name: print all 内置 vars
  debug: var=hostvars[inventory_hostname]
- name: print 内置变量
  debug: var=ansible_facts
---
- name: Test
  hosts: deployment
  gather_facts: F
  tasks:
  - name: Get compute node name
    debug:
      msg: "{{ hostvars }}"
    loop: "{{ groups['compute'] }}"