I'm using Packer builder like this.
```
{
"builders": [
{
"communicator": "ssh",
"source_path": "bento/ubuntu-20.04",
"provider": "virtualbox",
"type": "vagrant",
"output_dir": "target",
"skip_add": true
}
],
"provisioners": [
{
"type": "shell",
"script": "packer_script.sh"
},
}
```
So this is output target/package.box.
I want to deploy AWS AMI from this box image.
How to?
Maybe use this Post-Processor
But, this post-processor is not supported `.box` image.
Am I need .box -> .vmdk convert?
Can I direct import .box to AWS AMI?
Thanks.