Tengo una variable llamada "red" registrada en Ansible:
{
"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"
}
]
}
}
¿Es posible obtener la dirección IP ("addr") con type = "floating" haciendo algo como esto?
- debug: var={{ network.addresses.private_man | filter type="fixed" | get "addr" }}
Sé que la sintaxis es incorrecta, pero entiendes la idea.