The Vagrant box file can be used to create FreeBSD machines for virtualbox
and
aws
providers.
The box file the aws
provider just contains definitions for FreeBSD AMI's for
all aws regions. See FreeBSD on
EC2 page for further information.
To use the this box definition just add it to the list of available boxes for your vagrant installation. It will download the box files from Vagrant Cloud.
for provider in aws virtualbox; do \
vagrant box add \
JoergFiedler/freebsd-12 \
--provider ${provider}; \
done
Use JoergFiedler/freebsd-12
as name for the box file for both providers.
config.vm.box = 'JoergFiedler/freebsd-12'