Deltron is a blueprint for creating your own Chef Automate cluster in AWS, using Terraform.
Note: there are still bugs as this is under heavy development
- review the variables in main.tf and decide which ones you're going to override
- set up your environment variables with the overrides like:
export TF_VAR_aws_region="us-west-2"
export TF_VAR_aws_profile="default"
export TF_VAR_automate_vpc="vpc-fa58989d"
export TF_VAR_automate_subnet="subnet-63c62b04"
export TF_VAR_aws_key_pair_name="mykeypair"
export TF_VAR_aws_key_pair_file="~/.ssh/id_rsa"
export TF_VAR_tag_dept="MyDepartment"
export TF_VAR_tag_contact="My Name"
- Copy a chef delivery license file into this directory and name it
chef_automate.license
- run
terraform plan
to see what it will do - run
terraform apply
to build the infrastructure - run
terraform destroy
to tear everything down