bootstrap-vz/manifests/ec2-s3-debian-official-amd64-pvm-cn-north-1.manifest.json
Anders Ingemann 056f1968c1 Fixes #14 and #78
S3 images can now be bootstrapped outside EC2.
However, this fix adds the requirement of a "region" setting.
At some point we could make "region" optional and fail when bootstrap-vz
is run outside EC2 and no "region" is set.
2014-05-03 16:12:34 +02:00

48 lines
1 KiB
JSON

{
"provider": "ec2",
"virtualization": "pvm",
"credentials": {
// "access-key": null,
// "secret-key": null,
// "certificate": null,
// "private-key": null,
// "user-id": null
},
"bootstrapper": {
"workspace": "/target"
},
"image": {
"name": "debian-{system.release}-{system.architecture}-{virtualization}-{%Y}-{%m}-{%d}",
"description": "Debian {system.release} {system.architecture} AMI",
"bucket": "debian-amis-cn-north-1",
"region": "cn-north-1"
},
"system": {
"release": "wheezy",
"architecture": "amd64",
"bootloader": "pvgrub",
"timezone": "UTC",
"locale": "en_US",
"charmap": "UTF-8"
},
"packages": {
"mirror": "http://ftp.cn.debian.org/debian"
},
"volume": {
"backing": "s3",
"partitions": {
"type": "none",
"root": {
"size": "4GiB",
"filesystem": "ext4"
}
}
},
"plugins": {
"cloud_init": {
"username": "admin",
"disable_modules": [ "landscape", "byobu", "ssh-import-id" ]
}
}
}