在playbook或模板中使用ini文件中的IP地址

问题描述 投票:-3回答:1

我们使用Ansible来配置ElasticSearch集群。我想使用inventory.ini文件中的值。我有类似下面的内容:

[server: children]
server1
server2
server3 ip=xxxx
server4 ip=xxxx

我需要他们在剧本中使用。但它必须在这个字符串中。所以在剧本中它看起来像

"server1", "server2" or "xxxxx", "xxxxx"

谢谢

ansible
1个回答
0
投票

使用以下格式:

[server: children]
server1 ansible_host=<server1_ip>
© www.soinside.com 2019 - 2024. All rights reserved.