{
"builders": [{
"type": "amazon-ebs",
"region": "us-east-1",
"source_ami": "ami-0c02fb55956c7d316",
"instance_type": "t2.micro",
"ssh_username": "ubuntu",
"ami_name": "packer-nginx {{timestamp}}"
}],
"provisioners": [{
"type": "shell",
"inline": [
"sudo apt update",
"sudo apt install -y nginx"
]
}]
}