-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathterraform.tf
More file actions
36 lines (31 loc) · 1.08 KB
/
terraform.tf
File metadata and controls
36 lines (31 loc) · 1.08 KB
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
31
32
33
34
35
36
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 = "networking"
}
}
# see https://developer.hashicorp.com/terraform/language/settings#specifying-provider-requirements
required_providers {
# see https://registry.terraform.io/providers/hashicorp/aws/5.60.0/
aws = {
source = "hashicorp/aws"
version = ">= 5.60.0, < 6.0.0"
}
# see https://registry.terraform.io/providers/hashicorp/hcp/0.94.0/
hcp = {
source = "hashicorp/hcp"
version = ">= 0.94.0, < 1.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"
}