variable "name_prefix" {
  type        = string
  description = "The prefix which will be added to the name of the resources."
}

variable "name" {
  type        = string
  description = "The name of the resources."
}

variable "common_tags" {
  default     = {}
  description = "Tags which will be applied to created resources"
}

variable "aggregated_tag" {
  type        = string
  description = "The aggregated tag which is used for costs tracking."
}

variable "aws_region_id" {
  type        = string
  description = "The AWS region ID"
  default     = "us-east-1"
}

variable "account_id" {
  type        = string
  description = "The AWS Account ID."
}
