forked from aws-ia/terraform-aws-eks-blueprints
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversions.tf
More file actions
34 lines (33 loc) · 649 Bytes
/
Copy pathversions.tf
File metadata and controls
34 lines (33 loc) · 649 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
34
terraform {
required_version = ">= 1.0.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.72"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = ">= 2.10"
}
helm = {
source = "hashicorp/helm"
version = ">= 2.4.1"
}
local = {
source = "hashicorp/local"
version = ">= 2.1"
}
null = {
source = "hashicorp/null"
version = ">= 3.1"
}
http = {
source = "terraform-aws-modules/http"
version = "2.4.1"
}
kubectl = {
source = "gavinbunney/kubectl"
version = ">= 1.14"
}
}
}