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

variable "environment" {
  default = "prod"
}

variable "application_family" {
  default = "neighbouring-rights"
}

variable "metadata_lambda_name" {
  default = "lambda-metadata-generator-metadata"
}

variable "vpc_subnet_ids" {
  type        = list(any)
  description = "VPC subnet IDs where the lambdas will execute"
  default     = ["subnet-067a6b45b079d7296", "subnet-098b89d0c58c5693a", ]
}

variable "vpc_id" {
  type        = string
  description = "VPC ID"
  default     = "vpc-7f0e841a"
}

variable "nr_delivery_bucket" {
  type        = string
  description = "Neighbouring rights bucket"
  default     = "prod-neighbouring-rights"
}

variable "nr_delivery_path" {
  type        = string
  description = "Path in Neighbouring rights bucket that will contain all delivery files."
  default     = "delivery"
}

variable "nr_contributions_path" {
  type        = string
  description = "Path in Neighbouring rights bucket that will contain all contribution files."
  default     = "contributions"
}

variable "nr_cmo_templates_path" {
  type        = string
  description = "Path in Neighbouring rights bucket that will contain all template files."
  default     = "cmo-templates"
}
variable "physical_delivery_bucket" {
  type        = string
  description = "Physical delivery bucket"
  default     = "prod-delivery"
}

variable "physical_delivery_path" {
  type        = string
  description = "Path in bucket that holds all Physical delivery files."
  default     = "physical"
}

variable "graphql_url" {
  default = "https://prod-graphql-router.theorchard.io/graphql"
}
