variable "name_prefix" {
  type        = string
  description = "The prefix name of the objects"
  default     = "dev-"
}

variable "default_path" {
  type        = string
  description = "The prefix name of the objects"
  default     = "/"
}

variable "common_tags" {
  type        = map(string)
  description = "Common tags to add for the objects"
  default = {
    environment = "Development"
  }
}

