-
Notifications
You must be signed in to change notification settings - Fork 1
/
terraform.tf
30 lines (26 loc) · 958 Bytes
/
terraform.tf
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
30
terraform {
# see https://developer.hashicorp.com/terraform/language/settings/cloud
cloud {
# see https://developer.hashicorp.com/terraform/cli/cloud/settings#organization
organization = "workloads"
# see https://developer.hashicorp.com/terraform/cli/cloud/settings#workspaces
workspaces {
name = "workspaces"
}
}
# see https://developer.hashicorp.com/terraform/language/settings#specifying-provider-requirements
required_providers {
# see https://registry.terraform.io/providers/integrations/github/6.2.3
github = {
source = "integrations/github"
version = ">= 6.2.3, < 7.0.0"
}
# see https://registry.terraform.io/providers/hashicorp/tfe/0.57.0
tfe = {
source = "hashicorp/tfe"
version = ">= 0.57.0, < 1.0.0"
}
}
# see https://developer.hashicorp.com/terraform/language/settings#specifying-a-required-terraform-version
required_version = ">= 1.9.0, < 2.0.0"
}