variable "env_prefix" {
  type        = string
  description = "Prefix of environment"
}

variable "project_group" {
  type        = string
  description = "Project group"
}

variable "common_tags" {
  type        = map(string)
  description = "Common tags which will be applied to created resources"
  default     = {}
}

variable "region" {
  type        = string
  description = "Region where key resides"
  default     = "us-east-1"
}

variable "enable_key_rotation" {
  type        = bool
  description = "Enabling rotating CMS, default period is 1 year"
  default     = true
}

variable "rotation_lambda_arn" {
  description = "ARN of Lambda function which will perform password rotation in the environment"
  default     = ""
}
