network/examples/wireless_wpa3_sae.yml
Rich Megginson 2e8ac7aa66 ansible-lint 6.x updates
The only thing we need to skip currently is using FQCN for ansible
builtin modules, plugins
Add `kinds` - otherwise, Ansible thinks anything not in a traditional
role path is a plain YAML file, and we don't get the additional
checking.
Ensure all plays are named.
Fix some other minor problems.

Signed-off-by: Rich Megginson <rmeggins@redhat.com>
2023-01-08 15:12:11 -07:00

17 lines
465 B
YAML

# SPDX-License-Identifier: BSD-3-Clause
---
- name: Manage WPA3 with SAE
hosts: network-test
vars:
network_connections:
- name: wlan0
type: wireless
wireless:
ssid: My WPA3-Personal Network
key_mgmt: sae
# recommend vault encrypting the wireless password
# see https://docs.ansible.com/ansible/latest/user_guide/vault.html
password: p@55w0rD
roles:
- linux-system-roles.network