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

variable "environment" {
  default = "dev"
}

variable "vpc_security_group_ids" {
  default = ["sg-351b5751"]
}

variable "vpc_subnet_ids" {
  default = ["subnet-b649dfef", "subnet-44c19a21"]
}

variable "logger_dsn" {
  default = "udp://dev-fluentd-applications-udp.theorchard.io:5160"
}

variable "oa_user" {
  default = "oa:101"
}

variable "service_name" {
  default = "lambda-sme-ext-meta"
}

variable "lambda_default_timeout" {
  default = 300
}

variable auth0_authorizer_issuer {
  description = "Auth0 tenant URL"
  default = "https://dev-orchard.auth0.com/"
}

variable "route53_zone_name" {
  description = "Route53 zone name for the API Gateway domain"
  default = "dev.theorchard.io"
}

variable "acm_certificate_domain" {
  description = "ACM certificate domain for the API Gateway"
  default = "*.dev.theorchard.io"
}

variable domain_name {
  description = "Domain name for the API Gateway"
  default = "sme-ext-meta.dev.theorchard.io"
}

variable auth0_authorizer_audience {
  description = "Auth0 audience"
  default = "https://auth0-jwt-authorizer"
}

variable "sme_ext_meta_api_gateway_request_template_json_schema" {
  description = "API Gateway Resources method model schema file"
  default     = "sme-ext-meta-api-gateway-request-template-schema.json"
}
