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

variable "application_family" {
  description = "The application family."
  type        = string
  default     = "integrations"
}

variable "snowflake_storage_aws_role_arn" {
  description = "The ARN of the AWS IAM role that the Snowflake storage integration will assume to access the S3 bucket."
  type        = list(string)
  default = [
    "arn:aws:iam::494544507972:user/c_orchard_stage_volume",
    "arn:aws:iam::212740118925:user/91n1-s-vast5230"
  ]
}

variable "snowflake_storage_aws_role_external_id" {
  description = "The external ID that the Snowflake storage integration will use when assuming the AWS IAM role to access the S3 bucket."
  type        = list(string)
  default = ["ORCHARD_SFCRole=881_YDgxlKE6k1casV25YUNry0EJJqI=",
  "DELPHI_SFCRole=2_8Xzb+cE/+qhbj0X7PHI99r6CCKc="]
}

variable "prod_orcd_s3_bucket_name" {
  description = "The name of the prod orcd s3 bucket."
  type        = string
  default     = "prod-orcdbucket"
}

variable "feed_drop_stars_path" {
  description = "The path in the prod orcd s3 bucket for SonyInternal Stars data."
  type        = string
  default     = "feed-drop/SonyInternal/Stars/"
}
