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

variable vpc_security_group_ids {
    type        = list
    description = "Security group IDs for the VPC where the lambdas will execute"
}

variable vpc_subnet_ids {
    type        = list
    description = "VPC subnet IDs where the lambdas will execute"
}

variable lambda_memory_size {
    description = "Memory size for the lambda function"
}

variable logger_dsn {
    description = "DSN for logging."
}

variable datadog_function_destination_arn {
    description = "ARN of datadog function for shipping cloudwatch logs"
    default = "arn:aws:lambda:us-east-1:437795906767:function:DatadogLambdaFunction"
}

variable "asset_copy_arn" {
    description = "State Machine ARN for workflow_transfer_assets_to_delivery_drives."
    default     = "arn:aws:states:us-east-1:437795906767:stateMachine:qa_workflow_transfer_assets"
}
