Change interface to variable instead of static interface

This commit is contained in:
Christer Warén
2025-09-30 12:49:39 +03:00
parent da74f99bb7
commit b3a4646e49
2 changed files with 9 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
{
"Dhcp4": {
"interfaces-config": {
"interfaces": [ "enp0s25.20" ]
"interfaces": [ "{{ ansible_facts.interfaces | select('search', '^enp') | first }}.20" ]
},
"control-socket": {
"socket-type": "unix",
@@ -69,7 +69,7 @@
{
"id": 2,
"subnet": "192.168.2.0/27",
"interface": "enp0s25.20",
"interface": "{{ ansible_facts.interfaces | select('search', '^enp') | first }}.20",
"pools": [
{
"pool": "192.168.2.1 - 192.168.2.30"
@@ -161,7 +161,7 @@
{
"id": 69,
"subnet": "192.168.69.0/26",
"interface": "enp0s25.69",
"interface": "{{ ansible_facts.interfaces | select('search', '^enp') | first }}.69",
"pools": [
{
"pool": "192.168.69.1 - 192.168.69.62"