nixfiles/tf/terraform.tf
2024-06-08 17:25:08 -07:00

40 lines
No EOL
747 B
HCL

terraform {
required_providers {
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-tf"
}
}
#*/
/*
# 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-tf"
}
}
*/
}