26 lines
416 B
HCL
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"
|
|
}
|
|
}
|