Compare commits

..

No commits in common. "f4fe4e7625fc137878efad1486267609f0e53598" and "49016f3456a38b1f011be29a4396f3e26ab6743f" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View file

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

View file

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