1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00
Files
Tiago Vieira 83c9cd187a feat: Add support for deletion protection functionality in the cluster (#3475)
* feat: Add support for deletion protection functionality in the cluster

* fix: Bump version throughout, correct argument/variable name

---------

Co-authored-by: Tiago Vieira <tiago.vieira@sqills.com>
Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
2025-08-15 07:23:13 -05:00

27 lines
457 B
Terraform

terraform {
required_version = ">= 1.5.7"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 6.9"
}
helm = {
source = "hashicorp/helm"
version = ">= 3.0"
}
http = {
source = "hashicorp/http"
version = ">= 3.4"
}
local = {
source = "hashicorp/local"
version = ">= 2.5"
}
tls = {
source = "hashicorp/tls"
version = ">= 4.0"
}
}
}