update provider config for prod

This commit is contained in:
Jermeiah S 2025-06-15 17:15:18 -04:00
parent 49016f3456
commit 227469435a
No known key found for this signature in database

View file

@ -1,6 +1,6 @@
terraform {
cloud {
hostname = "localhost:9000"
hostname = "tofu.skdevstudios.com"
organization = "skdevs"
workspaces {
@ -14,7 +14,7 @@ terraform {
}
}
}
variable "token" {
variable "incus_token" {
type = string
}
provider "incus" {
@ -23,10 +23,10 @@ provider "incus" {
remote {
default = true
name = "otf"
name = "tofu-prod"
scheme = "https"
address = "olympus.tailfc9f5.ts.net"
token = var.token
token = var.incus_token
}
}