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

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

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 "s3_path" {
  description = "Path within S3 bucket"
  default     = "releases.theorchard.com"
}

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

variable "vpc_id" {
  default = "vpc-7f0e841a"
}

variable "vpc_subnet_ids" {
  description = "Subnets in which to run Lambda"
  type        = list(string)
  default     = ["subnet-5366ef24", "subnet-cb4dbae0"]
}

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"
}

