How to read a CSV file from Blob storage to take as input

I’m creating one terraform template and taking input from a csv file and using
csvdecode(file("${path.module}/file.csv")) and its working fine if file is on local or any other location.
Now, my query is my csv file is stored in Blob storage and want to read file from there and take input from csv file.
Is there anyway, I can do that.

Thanks