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

variable "environment" {
  default = "qa"
}

variable "service_name" {
  default = "graphql-router-integration-test"
}

variable "application_family" {
  default = "user-platform"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    # jwtauth-style combined secrets for user credentials
    # Format: {"username": "...", "password": "..."}
    "GRAPHQL_ROUTER_TEST_USER_CREDENTIALS",
    # jwtauth-style combined secrets for Auth0 app credentials
    # Format: {"client_id": "...", "client_secret": "..."}
    "SETTINGS_AUTH0_APP_CREDENTIALS",
  ]
}
