mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
50 lines
935 B
HCL
50 lines
935 B
HCL
terraform {
|
|
required_providers {
|
|
# Vendor: Hashicorp
|
|
tls = {
|
|
source = "hashicorp/tls"
|
|
version = "4.0.5"
|
|
}
|
|
# Vendor: Oracle
|
|
oci = {
|
|
source = "oracle/oci"
|
|
version = "5.45.0"
|
|
}
|
|
/*hcloud = {
|
|
source = "hetznercloud/hcloud"
|
|
version = "1.38.2"
|
|
}*/
|
|
tailscale = {
|
|
source = "tailscale/tailscale"
|
|
version = "0.13.7"
|
|
}
|
|
cloudflare = {
|
|
source = "cloudflare/cloudflare"
|
|
version = "4.4.0"
|
|
}
|
|
}
|
|
|
|
/*
|
|
# Settings for local applies
|
|
backend "remote" {
|
|
hostname = "app.terraform.io"
|
|
organization = "kittywitch"
|
|
workspaces {
|
|
name = "nixfiles"
|
|
}
|
|
}
|
|
*/
|
|
|
|
#/*
|
|
# Settings for remote applies
|
|
cloud {
|
|
organization = "kittywitch"
|
|
## Required for Terraform Enterprise; Defaults to app.terraform.io for Terraform Cloud
|
|
hostname = "app.terraform.io"
|
|
|
|
workspaces {
|
|
name = "nixfiles"
|
|
}
|
|
}
|
|
#*/
|
|
}
|