mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-30 10:33:46 +00:00
26 lines
525 B
HCL
26 lines
525 B
HCL
resource "proxmox_virtual_environment_cluster_ipset" "example" {
|
|
name = "local_network"
|
|
comment = "Managed by Terraform"
|
|
|
|
cidr {
|
|
name = "192.168.0.0/23"
|
|
comment = "Local network 1"
|
|
}
|
|
|
|
cidr {
|
|
name = "192.168.0.1"
|
|
comment = "Server 1"
|
|
nomatch = true
|
|
}
|
|
|
|
cidr {
|
|
name = "192.168.2.1"
|
|
comment = "Server 1"
|
|
}
|
|
}
|
|
|
|
output "resource_proxmox_virtual_environment_cluster_ipset" {
|
|
value = "${proxmox_virtual_environment_cluster_ipset.example.name}"
|
|
}
|
|
|