Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 500 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 500 Bytes

Deploying onto Amazon Web Services

With a pair of AWS keys accessible to Terraform, this template deploys a simple Trillian setup in AWS using EC2 and RDS MySQL.

cd examples/deployment/aws/

# Set a random password
export TF_VAR_DB_PASSWORD="$(openssl rand -hex 16)"
# Substitute this variable with a block you'll be accessing from
export TF_VAR_WHITELIST_CIDR="0.0.0.0/0"

# Review and Create Resources
terraform plan
terraform apply