update: migrate to otf!
All checks were successful
/ test (push) Successful in 1s

this config is in prep for otf server
This commit is contained in:
Jermeiah S 2025-06-13 18:29:05 -04:00
parent 473a24e55d
commit 49016f3456
No known key found for this signature in database
2 changed files with 22 additions and 22 deletions

View file

@ -1,4 +1,12 @@
terraform {
cloud {
hostname = "localhost:9000"
organization = "skdevs"
workspaces {
name = "dev"
}
}
required_providers {
incus = {
source = "lxc/incus"
@ -6,18 +14,19 @@ terraform {
}
}
}
variable "token" {
type = string
}
provider "incus" {
generate_client_certificates = true
accept_remote_certificate = true
remote {
default = true
name = "lappy"
name = "otf"
scheme = "https"
address = "olympus.tailfc9f5.ts.net"
token = "token"
token = var.token
}
}