-
Notifications
You must be signed in to change notification settings - Fork 3
/
versions.tf
42 lines (41 loc) · 898 Bytes
/
versions.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
38
39
40
41
42
terraform {
required_version = ">= 1.10, <1.11"
required_providers {
aws = {
source = "hashicorp/aws"
}
local = {
source = "hashicorp/local"
}
# TODO track with updatecli
# Required by the EKS module
cloudinit = {
source = "hashicorp/cloudinit"
}
# TODO track with updatecli
# Required by the EKS module
null = {
source = "hashicorp/null"
}
# TODO track with updatecli
# Required by the EKS module
time = {
source = "hashicorp/time"
}
# TODO track with updatecli
# Required by the EKS module
tls = {
source = "hashicorp/tls"
}
# TODO track with updatecli
# Required by the EKS module
kubernetes = {
source = "hashicorp/kubernetes"
}
# TODO track with updatecli
# Required by the EKS module
helm = {
source = "hashicorp/helm"
}
}
}