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

variable "environment" {
  type        = string
  description = "The environment"
  default     = "shared"
}

variable "service_name" {
  type        = string
  description = "The name of the service"
  default     = "jenkins-docker-hub"
}

variable "application_family" {
  type        = string
  description = "The name of the application family"
  default     = "devops"
}

variable "team_name" {
  type        = string
  description = "The name of the team that owns this service"
  default     = "devops"
}

variable "secrets_manager_secret_names" {
  type        = set(string)
  description = "List of secrets to create"
  default = [
    "DOCKER_HUB_TOKEN",
  ]
}
