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

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

variable "service_name" {
  description = "The name of the associated application."
  default     = "ddex-ingester"
}

variable "application_family" {
  default = "content-management"
}

variable "team" {
  description = "Datadog team slug"
  default     = "content-creation-management"
}

variable "video_asset_bucket" {
  type        = string
  description = "Video asset s3 Bucket"
  default     = "qa-orcd-video-assets"
}

variable "raw_asset_bucket" {
  description = "Raw Asset bucket"
  default     = "qa-orcd-raw-assets"
}

variable "snowflake_snowpipe_sqs_arn" {
  type        = string
  description = "ARN for our Snowflake Snowpipe setup"
  default     = "arn:aws:sqs:us-east-1:494544507972:sf-snowpipe-AIDAIHM6UTPQSQDMWTDXW-ttk8xheij2Blmxissk-Dtg"
}

variable "sme_aws_account_id" {
  type        = string
  description = "SME AWS account id"
  default     = "023180329437"
}

variable "sme_role_name" {
  type        = string
  description = "SME role name"
  default     = "delp2-delivery-util-ec2-role"
}

variable "sme_folder_names" {
  type        = list(string)
  description = "SME folder names inside the DDEX S3 bucket"
  default     = ["sme_ddex", "sme_analytics_ddex"]
}
