This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Tofu-Configurations/providers.tf
2025-06-12 21:50:35 -04:00

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"
}
}