-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tf
30 lines (26 loc) · 956 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 = "web-redirects"
}
}
# 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/random/3.6.2
random = {
source = "hashicorp/random"
version = ">= 3.6.2, < 4.0.0"
}
}
# see https://developer.hashicorp.com/terraform/language/settings#specifying-a-required-terraform-version
required_version = ">= 1.9.0, < 2.0.0"
}