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

variable region {
    default = "us-east-1"
}

variable iam_policy_file_location {
    default = "policies"
}

variable LOGGER_DSN {
    description = "DSN for logging for artist-store-identifier lambda"
}

variable custom_function_name {
    description = "Custom function name"
    default     = "upload-audit-logs-to-s3-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 SENTRY_DSN {
    description = "Sentry DSN"
}
