variable "name_prefix" {
  type = string
  default = "AMP-P"
}
variable "cluster_name" {
  type = string
  default = "amp-prod-as-eks"
}
variable "namespace" {
  type = string
  default = "amp-prod-as"
}
variable "aws_region" {
  type        = string
  description = "The AWS region to deploy resources in"
  default     = "eu-central-1"
}

variable "create_monitors" {
  type    = bool
  default = true
}

variable "environment" {
  type = string
  default = "prod"
}
