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
Jermeiah S 63e24789a2
All checks were successful
/ test (push) Successful in 1s
moved incus config to subdirectory
observer-tofu is deployed
need to learn more before writing nix config to pair
2025-06-15 22:34:52 -04:00

32 lines
536 B
HCL

terraform {
cloud {
hostname = "tofu.skdevstudios.com"
organization = "skdevs"
workspaces {
name = "dev"
}
}
required_providers {
incus = {
source = "lxc/incus"
version = "0.3.1"
}
}
}
variable "incus_token" {
type = string
}
provider "incus" {
generate_client_certificates = true
accept_remote_certificate = true
remote {
default = true
name = "tofu-prod"
scheme = "https"
address = "olympus.tailfc9f5.ts.net"
token = var.incus_token
}
}