variable "env_prefix" {
  type        = string
  description = "Environment prefix"
}
variable "delphi-configs" {
  type        = string
  description = "Config bucket name"
}

variable "run_config_filename" {
  type        = string
  description = "Name of the object in s3"
  default     = "ecs-run-config.json"
}

variable "template_name" {
  type        = string
  description = "Name of template file from which uploaded file will be created"
  default     = "esc_run_config.tmpl"
}

variable "slz_content_status" {
  type        = string
  description = "Name of slz_content_status Dynamodb table"
}

variable "sme-data-archive" {
  type        = string
  description = "sme-data-archive bucket name"
}

variable "sme-data-decompressed" {
  type        = string
  description = "sme-data-decompressed bucket name"
}

variable "sme-data-corrupted" {
  type        = string
  description = "sme-data-corrupted bucket name"
}

variable "subnets_ids" {
  type        = list(string)
  description = "List of subnet ids to run task in"
}

variable "security_groups" {
  type        = list(string)
  description = "List of security groups to run task in"
}

variable "ecs_task_def_arn" {
  type        = string
  description = "ARN of ECS task definition"
}

variable "ecs_cluster_arn" {
  type        = string
  description = "ARN of ECS cluster to run task in"
}

/* Add if needed
variable env_variables {
  type        = list(any))
  description = []
}*/

/*
env_prefix
delphi-configs
run_config_filename
template_name
slz_content_status
sme-data-archive
sme-data-decompressed
sme-data-corrupted
subnets_ids
ecs_task_def_arn
ecs_cluster_arn
*/
