-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterraform.tf
30 lines (26 loc) · 935 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 = "community"
}
}
# see https://developer.hashicorp.com/terraform/language/settings#specifying-provider-requirements
required_providers {
# see # see https://registry.terraform.io/providers/Lucky3028/discord/1.8.1
discord = {
source = "Lucky3028/discord"
version = "1.8.1"
}
# see https://registry.terraform.io/providers/hashicorp/tfe/0.57.0
tfe = {
source = "hashicorp/tfe"
version = "0.57.0"
}
}
# see https://developer.hashicorp.com/terraform/language/settings#specifying-a-required-terraform-version
required_version = ">= 1.9.0, < 2.0.0"
}