summaryrefslogtreecommitdiff
path: root/terraform/main.tf
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-01-31 08:14:23 -0500
committerSeth Flynn <[email protected]>2025-02-03 05:34:09 -0500
commit082ef6167ea188de4a0439fe63baaca41b19b45b (patch)
treec51217b3b47601ee95cacfeaeaef426fb7128a6d /terraform/main.tf
parentd5ad065e31f4d84824463829eeabfb55dbe9ece4 (diff)
terraform: switch to plain hcl
• Removed input 'terranix' • Removed input 'terranix/bats-assert' • Removed input 'terranix/bats-support' • Removed input 'terranix/flake-parts' • Removed input 'terranix/nixpkgs' • Removed input 'terranix/systems' • Removed input 'terranix/terranix-examples'
Diffstat (limited to 'terraform/main.tf')
-rw-r--r--terraform/main.tf25
1 files changed, 25 insertions, 0 deletions
diff --git a/terraform/main.tf b/terraform/main.tf
new file mode 100644
index 0000000..0fde4cd
--- /dev/null
+++ b/terraform/main.tf
@@ -0,0 +1,25 @@
+terraform {
+ cloud {
+ hostname = "app.terraform.io"
+ organization = "getchoo"
+
+ workspaces {
+ name = "borealis"
+ }
+ }
+
+ required_providers {
+ cloudflare = {
+ source = "registry.opentofu.org/cloudflare/cloudflare"
+ version = "~> 4"
+ }
+ hcp = {
+ source = "registry.opentofu.org/hashicorp/hcp"
+ version = "~> 0.102"
+ }
+ tailscale = {
+ source = "registry.opentofu.org/tailscale/tailscale"
+ version = "~> 0.17"
+ }
+ }
+}