mirror of
https://github.com/mr0xb/home-iac.git
synced 2026-08-27 19:34:57 -04:00
18 lines
No EOL
319 B
HCL
18 lines
No EOL
319 B
HCL
resource "unifi_network" "trusted" {
|
|
name = "Trusted"
|
|
vlan_id = 10
|
|
subnet = "192.168.10.1/24"
|
|
}
|
|
|
|
resource "unifi_network" "iot" {
|
|
name = "IOT"
|
|
vlan_id = 20
|
|
subnet = "192.168.1.20.1/24"
|
|
}
|
|
|
|
resource "unifi_network" "guest" {
|
|
name = "Guest"
|
|
vlan_id = 30
|
|
subnet = "192.168.1.30.1/24"
|
|
purpose = "Guest"
|
|
} |