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

variable "aws_region" {
  type    = string
  default = "us-east-1"
}

variable "service_name" {
  type        = string
  description = "The name of the service. The combination of this and environment must be unique across all Atlantis instances."
  default     = "chef-workstation"
}

variable "application_family" {
  type    = string
  default = "devops"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "CLIENT_KEY"
  ]
}
