nix/terraform/incus/main.tf
iofq 3d8242b314
Some checks failed
/ check (push) Has been cancelled
opentofu incus
2026-03-23 00:19:00 -05:00

26 lines
416 B
HCL

terraform {
required_providers {
incus = {
source = "lxc/incus"
}
}
}
provider "incus" {
generate_client_certificates = true
accept_remote_certificate = true
default_remote = "incus"
remote {
name = "incus"
address = "https://incus:8443"
}
}
resource "incus_network" "enp4s0" {
name = "enp4s0"
type = "physical"
config = {
parent = "enp4s0"
}
}