Skip to content

Instantly share code, notes, and snippets.

@raphink
Last active August 8, 2017 09:38
Show Gist options
  • Save raphink/20aab838814d269177887ec2ee2041d1 to your computer and use it in GitHub Desktop.
Save raphink/20aab838814d269177887ec2ee2041d1 to your computer and use it in GitHub Desktop.
Terraboard post
docker run -d -p 8080:8080 \
-e AWS_REGION=<AWS_DEFAULT_REGION> \
-e AWS_ACCESS_KEY_ID=<AWS_ACCESS_KEY_ID> \
-e AWS_SECRET_ACCESS_KEY=<AWS_SECRET_ACCESS_KEY> \
-e AWS_BUCKET=<terraform-bucket> \
-e AWS_DYNAMODB_TABLE=<terraform-locks-table> \
-e DB_PASSWORD="mygreatpasswd" \
--link postgres:db \
camptocamp/terraboard:latest
sac_cas/
├── rancher-env
│   ├── dev
│   │   ├── app.tf
│   │   ├── cloudfront.tf
│   │   ├── datasources.tf
│   │   ├── letsencrypt.log
│   │   ├── letsencrypt.tf
│   │   ├── metrics.tf
│   │   ├── providers.tf
│   │   ├── rancher.tf
│   │   ├── route53.tf
│   │   ├── s3.tf
│   │   ├── stacks.tf
│   │   ├── terraform.tf
│   │   └── variables.tf
│   └── prod
│   ├── app.tf
│   ├── backup
│   │   ├── docker-compose.yml.tpl
│   │   └── rancher-compose.yml
│   ├── backup.tf
│   ├── cloudfront.tf
│   ├── datasources.tf
│   ├── fetch-rancher-certificate
│   │   ├── docker-compose.yml
│   │   └── rancher-compose.yml
│   ├── fetch-rancher-certificate.tf
│   ├── letsencrypt.tf
│   ├── metrics.tf
│   ├── providers.tf
│   ├── rancher.tf
│   ├── rds.tf
│   ├── reverse-proxy
│   │   ├── docker-compose.yml
│   │   └── rancher-compose.yml
│   ├── reverse-proxy.tf
│   ├── route53_healthchecks.tf
│   ├── route53.tf
│   ├── s3.tf
│   ├── stacks.tf
│   ├── terraform.tf
│   ├── terraform.tfstate.backup
│   └── variables.tf
└── tenant
└── aws
├── aws.tf
├── main.tf
├── output.tf
├── rds.tf
├── route53.tf
├── sg.tf
├── sn.tf
├── terraform.tf
└── vpc.tf
8 directories, 46 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment