All checks were successful
/ test (push) Successful in 1s
this config is in prep for otf server
32 lines
506 B
HCL
32 lines
506 B
HCL
terraform {
|
|
cloud {
|
|
hostname = "localhost:9000"
|
|
organization = "skdevs"
|
|
|
|
workspaces {
|
|
name = "dev"
|
|
}
|
|
}
|
|
required_providers {
|
|
incus = {
|
|
source = "lxc/incus"
|
|
version = "0.3.1"
|
|
}
|
|
}
|
|
}
|
|
variable "token" {
|
|
type = string
|
|
}
|
|
provider "incus" {
|
|
generate_client_certificates = true
|
|
accept_remote_certificate = true
|
|
|
|
remote {
|
|
default = true
|
|
name = "otf"
|
|
scheme = "https"
|
|
address = "olympus.tailfc9f5.ts.net"
|
|
token = var.token
|
|
}
|
|
}
|
|
|