Ansible에 등록 된 "network"라는 변수가 있습니다.
{
"addresses": {
"private_ext": [
{
"type": "fixed",
"addr": "172.16.2.100"
}
],
"private_man": [
{
"type": "fixed",
"addr": "172.16.1.100"
},
{
"type": "floating",
"addr": "10.90.80.10"
}
]
}
}
다음과 같이 type = "floating"으로 IP 주소 ( "addr")를 얻을 수 있습니까?
- debug: var={{ network.addresses.private_man | filter type="fixed" | get "addr" }}
구문이 잘못되었다는 것을 알고 있지만 아이디어를 얻었습니다.