Files
launchpad/.tofu/platforms/eks/prod/providers.tf
Danijel Simeunovic 96dde22884
All checks were successful
AI Code Review / ai-review (pull_request) Successful in 59s
strip cluster bootstraps
2026-04-27 21:43:42 +02:00

23 lines
357 B
HCL

terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
}
tls = {
source = "hashicorp/tls"
version = "~> 4.0"
}
}
}
provider "aws" {
region = var.region
}
variable "region" {
description = "AWS region for prod environment"
type = string
default = "eu-west-1"
}