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

variable "environment" {
  description = "Name of the environment, e.g. dev, qa, prod"
  default     = "qa"
}

variable "service_name" {
  default = "lambda-releases-orcd"
}

variable "application_family" {
  default = "vector"
}

variable "lambda_name" {
  description = "Name of the lambda function"
  default     = "new-release-json-blaster"
}

variable "api_gateway_instance_name" {
  description = "Name of the api gateway"
  default     = "new-release-json-blaster"
}

variable "s3_path" {
  description = "Path within S3 bucket"
  default     = "releases.theorchard.com"
}

variable "s3_bucket" {
  description = "S3 bucket name"
  default     = "orcdbucket"
}

variable "api_gateway_certificate_arn" {
  description = "ARN of existing certificate for use with API gateway"
  default     = "arn:aws:acm:us-east-1:437795906767:certificate/a76e4883-28aa-4062-a4cc-c06b8012ae28"
}

variable "lambda_secrets" {
  type = list(string)
  default = [
    "SNOWFLAKE_PRIVATE_KEY"
  ]
}

variable "team_name" {
  type        = string
  description = "Name of team that owns the service"
  default     = "content-delivery-asset-management"
}
