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

variable "environment" {
  description = "Available values:  dev, qa, prod."
  default     = "qa"
}

variable "service_name" {
  default = "orchard-repo-cron-worker"
}

variable "application_family" {
  default = "php-monolith"
}

variable "config_s3_bucket" {
  description = "S3 bucket where encrypted content is stored"
  default     = "nickelback"
}

variable "config_service_name" {
  description = "Service name for config locations"
  default     = "orchard-repo-cron-worker"
}

variable "map_migrated_tag" {
  type        = string
  description = "Name of MAP migration hub server id for accounting_run"
  default     = "d-server-00oqiwieeb6fpl"
}

variable "shared_account_id" {
  description = "AWS Account ID of shared account for ECR images"
  type        = string
  default     = "086679231553"
}

locals {
  cron_jobs = {
    "payment_calculator_cli" = {
      service_name     = "cron-payment-calculator-cli"
      script_arguments = ""
      script_to_run    = "scripts/Accounting/payment_calculator_cli.php"
    }
  }
}

variable "team_name" {
  description = "Team name"
  default = "appsec"
}
