summaryrefslogtreecommitdiff
path: root/terraform/main.tf
blob: 2b6d1abded876875d2192d98d304aa81bf2975e8 (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
26
27
28
29
terraform {
  cloud {
    hostname     = "app.terraform.io"
    organization = "getchoo"

    workspaces {
      name = "borealis"
    }
  }

  required_providers {
    cloudflare = {
      source  = "registry.opentofu.org/cloudflare/cloudflare"
      version = "~> 4"
    }
    oci = {
      source  = "registry.opentofu.org/oracle/oci"
      version = "~> 6"
    }
    hcp = {
      source  = "registry.opentofu.org/hashicorp/hcp"
      version = "~> 0.102"
    }
    tailscale = {
      source  = "registry.opentofu.org/tailscale/tailscale"
      version = "~> 0.17"
    }
  }
}