Fix quoting
Some checks failed
Deploy / deploy (push) Failing after 33s

This commit is contained in:
2026-02-22 21:10:15 +00:00
parent a93f51ee7b
commit 96cf3d48fa

View File

@@ -60,9 +60,9 @@
state: present
applianceIp: "192.168.{{ item.id }}.1"
# cidr: "192.168.{{ item.id }}.0/24"
id: '{{ item.id }}'
vlanId: {{ item.id }}
name: {{ item.name }}
id: "{{ item.id }}"
vlanId: "{{ item.id }}"
name: "{{ item.name }}"
networkId: "{{ nid }}"
subnet: "192.168.{{ item.id }}.0/24"
loop: vlans
@@ -70,8 +70,8 @@
- name: Enable DHCP on Relevant VLANs
cisco.meraki.networks_appliance_vlans:
state: present
id: '{{ item.id }}'
vlanId: {{ item.id }}
id: "{{ item.id }}"
vlanId: "{{ item.id }}"
dhcpHandling: "Run a DHCP server"
dhcpLeaseTime: "1 day"
dnsNameservers: |
@@ -83,8 +83,8 @@
- name: Disable DHCP on Relevant VLANs
cisco.meraki.networks_appliance_vlans:
state: present
id: '{{ item.id }}'
vlanId: {{ item.id }}
id: "{{ item.id }}"
vlanId: "{{ item.id }}"
dhcpHandling: "Do not respond to DHCP requests"
loop: vlans
when: not item.dhcp