variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to spin up the environment in"
}

variable "environment" {
  description = "Available values:  dev, qa, prod."
  default     = "qa"
}

variable "service_name" {
  default = "ows-pdp-stress-test"
}

// Temporarily set to permissions-platform so we can configure the secrets :)
variable "application_family" {
  default = "permissions-platform"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    # python-jwtauth[testing] UserCreds objects
    "COMPLICATED_IDENTITY_USER_CREDENTIALS",
    "SIMPLE_IDENTITY_USER_CREDENTIALS",
  ]

}
