Deploy Empire in less than 3min to the cloud using Terraform
This blog post is better than the readme: https://www.sprocketsecurity.com/blog/autored-empire
-
Install terraform
-
For AWS, create an IAM and add the following to
~/.aws/credentials
[autored]
aws_access_key_id = XXXXXXXXXXXXXXXX
aws_secret_access_key = YYYYYYYYYYYYYYYYYYYYYYY
region = us-east-2
- In a directory on your workstation download this terraform template:
git clone https://github.com/sprocketsec/autored-empire
- Edit variables for your infrastructure:
vim variables.tf
- Test your config to make sure its valid (this doesnt deploy anything):
terraform plan
- Once changes look good, deploy to AWS
terraform deploy