-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversions.tf
More file actions
33 lines (31 loc) · 718 Bytes
/
versions.tf
File metadata and controls
33 lines (31 loc) · 718 Bytes
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
terraform {
required_version = ">= 1.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 4.47"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = ">= 2.10"
}
helm = {
source = "hashicorp/helm"
version = ">= 2.4"
}
kubectl = {
source = "gavinbunney/kubectl"
version = ">= 1.14"
}
random = {
source = "hashicorp/random"
version = ">= 3.3"
}
}
# ## Used for end-to-end testing on project; update to suit your needs
# backend "s3" {
# bucket = "doeks-github-actions-e2e-test-state"
# region = "us-west-2"
# key = "e2e/emr-eks-karpenter/terraform.tfstate"
# }
}