Terraform configuration files for building, changing, and versioning SureFire infrastructure on AWS.
$ git clone https://github.com/surefire/infrastructure.git
Configure Terraform to store its state in a bucket on Amazon S3.
$ terraform remote config \
-backend=s3 \
-backend-config="bucket=surefire.operations.terraform" \
-backend-config="key=terraform.tfstate" \
-backend-config="region=eu-west-1" \
-backend-config="encrypt=true" \
-backend-config="acl=private"
$ terraform apply