mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-11 22:41:43 +01:00
27 lines
459 B
HCL
27 lines
459 B
HCL
terraform {
|
|
required_version = ">= 1.3.2"
|
|
|
|
required_providers {
|
|
aws = {
|
|
source = "hashicorp/aws"
|
|
version = ">= 5.95"
|
|
}
|
|
helm = {
|
|
source = "hashicorp/helm"
|
|
version = ">= 2.16"
|
|
}
|
|
http = {
|
|
source = "hashicorp/http"
|
|
version = ">= 3.4"
|
|
}
|
|
local = {
|
|
source = "hashicorp/local"
|
|
version = ">= 2.5"
|
|
}
|
|
tls = {
|
|
source = "hashicorp/tls"
|
|
version = ">= 4.0"
|
|
}
|
|
}
|
|
}
|