update provider config for prod
This commit is contained in:
parent
49016f3456
commit
227469435a
1 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue