How to expand the disks of an Azure SQL VM

Hello everyone, I need to expand the disks of an Azure SQL VM created via terraform.

How should I proceed to expand these disks?
This was the code I used to deploy the SQL VM:

storage_configuration {
disk_type = “NEW”
storage_workload_type = “OLTP”
data_settings {
default_file_path = “F:\Data”
luns = [1]
}
log_settings {
default_file_path = “G:\Log”
luns = [2]
}
temp_db_settings {
default_file_path = “H:\TempDb”
luns = [3]
data_file_count = “8”
data_file_growth_in_mb = “512”
data_file_size_mb = “256”
log_file_growth_mb = “512”
log_file_size_mb = “256”
}

Now I need to configure more space on the DATA and LOG drive, but I don’t know how I should do this.

Thanks for the support.