summaryrefslogtreecommitdiff
path: root/terraform/main.tf
blob: 0fde4cde5acda152dbd30c874f5918285abfabbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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"
    }
  }
}