15 lines
505 B
YAML
15 lines
505 B
YAML
---
|
|
# playbooks/baseline_network_config.yml
|
|
# Baseline network config for static IPs and VLAN prep
|
|
- name: Baseline network configuration
|
|
hosts: all
|
|
gather_facts: false
|
|
tasks:
|
|
- name: Document static IP assignments
|
|
ansible.builtin.debug:
|
|
msg: "[Info] Ensure static IPs match contracts for {{ inventory_hostname }}."
|
|
|
|
- name: Review VLAN segmentation readiness
|
|
ansible.builtin.debug:
|
|
msg: "[Info] VLANs not yet in use, but config should be reviewed periodically."
|