-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathterraform.tf
37 lines (32 loc) · 1.02 KB
/
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
31
32
33
34
35
36
37
terraform {
# see https://www.terraform.io/language/settings#specifying-provider-requirements
required_providers {
# see https://registry.terraform.io/providers/hashicorp/aws/latest
aws = {
source = "hashicorp/aws"
version = "4.3.0"
# see https://www.terraform.io/language/modules/develop/providers#provider-aliases-within-modules
configuration_aliases = [
aws,
aws.certificates
]
}
# see https://registry.terraform.io/providers/hashicorp/awscc/latest
awscc = {
source = "hashicorp/awscc"
version = ">= 0.13.0"
}
# see https://registry.terraform.io/providers/hashicorp/http/latest
http = {
source = "hashicorp/http"
version = "2.1.0"
}
# see https://registry.terraform.io/providers/hashicorp/random/latest/docs
random = {
source = "hashicorp/random"
version = "3.1.0"
}
}
# see https://www.terraform.io/language/settings#specifying-a-required-terraform-version
required_version = ">= 1.1.6"
}