Compare commits

..

2 commits

Author SHA1 Message Date
Jermeiah S
f4fe4e7625
items managed by tofu should be delcared as such in some way
All checks were successful
/ test (push) Successful in 1s
2025-06-15 17:15:40 -04:00
Jermeiah S
227469435a
update provider config for prod 2025-06-15 17:15:18 -04:00
2 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
# resource "incus_instance" "demo" { # resource "incus_instance" "demo-tofu" {
# name = "demo" # name = "demo"
# image = "images:fedora/42" # image = "images:fedora/42"
# config = { # config = {

View file

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