variable "environment" {
  type        = string
  description = "The name of the environment"
  default     = "prod"
}

variable "aws_region" {
  type        = string
  description = "The AWS region to deploy resources in"
  default     = "eu-central-1"
}

variable "custom_bucket_name" {
  type        = string
  description = "The name of the S3 bucket"
  default     = "lcsp-file-repo"
}

variable "application_family" {
  type        = string
  description = "The application family"
  default     = "grps"
}

variable "user_name" {
  type        = string
  description = "The name of the user"
  default     = "lbcpyp-user"
}