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

variable "environment" {
  default = "prod"
}

variable "github_token" {
  type        = string
  description = "Github token"
  default     = ""
}

variable "github_organization" {
  type        = string
  description = "Github organization"
  default     = "theorchard"
}

variable "service_name" {
  type        = string
  description = "Service name"
  default     = "python-pdp-sdk"
}

variable "application_family" {
  type    = string
  default = "permissions-platform"
}

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