soroban-abacus-flashcards/infra/terraform/versions.tf

19 lines
317 B
HCL

terraform {
required_version = ">= 1.0"
required_providers {
kubernetes = {
source = "hashicorp/kubernetes"
version = "~> 2.25"
}
helm = {
source = "hashicorp/helm"
version = "~> 2.12"
}
null = {
source = "hashicorp/null"
version = "~> 3.2"
}
}
}