variable "aws_region" {
  type        = string
  default     = "us-east-1"
  description = "The AWS region to create the repository in"
}

variable "environment" {
  type        = string
  description = "Deployment environment"
  default     = "prod"
}

variable "application_family" {
  type        = string
  description = "Application family"
  default     = "d2c"
}

variable "service_name" {
  type        = string
  description = "Service name"
  default     = "shopify-data-connector-onboarding"
}

variable "team_name" {
  type        = string
  description = "Team name"
  default     = "d2c"
}

variable "lambda_function_names" {
  description = "List of lambda function names"
  type        = list(string)
  default = [
    "lambda-d2c-connect-shopify-stores",
    "lambda-d2c-onboard-shopify-stores",
    "lambda-d2c-sync-shopify-data-connectors",
  ]
}
