Packer doesn't mount additional drives on ec2

Hi,
I am getting strange situation inside the main i am attaching 3 additional drives

main 100gb
launch_block_device_mappings {
device_name = “/dev/sda1”
volume_size = 100
volume_type = “gp3”
delete_on_termination = true
}

and 3 more(E:,G:,H:):
ami_block_device_mappings {
device_name = “/dev/sde”
volume_size = 75
volume_type = “gp3”
delete_on_termination = true
}
ami_block_device_mappings {
device_name = “/dev/sdg”
volume_size = 500
volume_type = “gp3”
delete_on_termination = true
}
ami_block_device_mappings {
device_name = “/dev/sdh”
volume_size = 150
volume_type = “gp3”
delete_on_termination = true
}

When i execute a powershell script with command
$Drives=[System.IO.DriveInfo]::getdrives()

output is :
Base-SQL.amazon-ebs.ami: Drives : C:
So ami_block_device_mappings are missing on EC2 , What i am doing wrong or i am missing something.

Thats the working syntax and then on powershell script you need to init the disks

launch_block_device_mappings {
device_name = “/dev/sda1”
volume_size = 100
volume_type = “gp3”
delete_on_termination = true
}
launch_block_device_mappings {
device_name = “/dev/sde”
volume_size = 75
volume_type = “gp3”
delete_on_termination = true
}
launch_block_device_mappings {
device_name = “/dev/sdg”
volume_size = 500
volume_type = “gp3”
delete_on_termination = true
}
launch_block_device_mappings {
device_name = “/dev/sdh”
volume_size = 150
volume_type = “gp3”
delete_on_termination = true
}