23 lines
354 B
HCL
23 lines
354 B
HCL
terraform {
|
|
required_providers {
|
|
incus = {
|
|
source = "lxc/incus"
|
|
version = "0.3.1"
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
provider "incus" {
|
|
generate_client_certificates = true
|
|
accept_remote_certificate = true
|
|
|
|
remote {
|
|
default = true
|
|
name = "lappy"
|
|
scheme = "https"
|
|
address = "olympus.tailfc9f5.ts.net"
|
|
token = "token"
|
|
}
|
|
}
|
|
|