forked from ajacoutot/aws-openbsd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Artur Pedziwilk
committed
Sep 20, 2016
1 parent
ff33953
commit a0aa94b
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,50 @@ | ||
# AWS-OpenBSD | ||
|
||
AWS playground for OpenBSD kids | ||
|
||
Running whatever is in this repo will propably end up destroying a kitten factory. | ||
|
||
|
||
## Prerequisites | ||
|
||
* not less than 16GB free space available in /tmp (8GB for disk image and 8GB for temporary files) | ||
* doas configured; for building as a root the "permit nopass keepenv root as root" in /etc/doas.conf is enough | ||
* awscli, ec2-api-tools, jdk packages installed | ||
* shell environment variables available | ||
|
||
export EC2_HOME=/usr/local/ec2-api-tools/; | ||
export JAVA_HOME=/usr/local/jdk-1.7.0/; | ||
export AWS_ACCESS_KEY=YOUR_AWS_ACCES_KEY; | ||
export AWS_SECRET_KEY=YOUR_AWS_SECRET_KEY; | ||
|
||
* Identity and Access Management configured | ||
|
||
> YOUR_AWS_ACCES_KEY and YOUR_AWS_SECRET_KEY should have AmazonEC2FullAccess and AmazonS3FullAccess policies assigned. | ||
|
||
## Usage | ||
|
||
sh create-ami.sh; | ||
|
||
## References | ||
http://blog.d2-si.fr/2016/02/15/openbsd-on-aws/ | ||
|
||
|
||
## Unofficial builds | ||
|
||
### OpenBSD 6.0 | ||
|
||
* EU Frankfurt | ||
|
||
AMI Id: ami-ac32cfc3 | ||
AMI Name: openbsd-6.0-amd64 | ||
AMI Source: 495039774644/openbsd-6.0-amd64 | ||
AMI Description: OpenBSD 6.0 unofficial built by https://github.com/wilkart | ||
|
||
* EU Ireland | ||
|
||
AMI Id: ami-4e96ed3d | ||
AMI Name: openbsd-6.0-amd64 | ||
AMI Source: 495039774644/openbsd-6.0-amd64 | ||
AMI Description: OpenBSD 6.0 unofficial built by https://github.com/wilkart | ||
|