Skip to content

Instantly share code, notes, and snippets.

@katesclau
Last active December 13, 2016 15:04
Show Gist options
  • Save katesclau/9616a7fdbc351a84fe27ffe64f3d23bd to your computer and use it in GitHub Desktop.
Save katesclau/9616a7fdbc351a84fe27ffe64f3d23bd to your computer and use it in GitHub Desktop.
Terraform Cluster Tutorial initial configuration from previous tutorial
.
├── aws_credentials.tf # Your credentials variables. Should contain you Access key and Secret Key
├── aws.pem # Your Private key for access
├── aws.pem.pub # Your Public key
├── ec2
│   ├── server.tf # Instance configuration, it'll be transformed into our ASG configuration
│   └── variables.tf
├── keys
│   ├── keys.tf # Your Key pair description on AWS
│   └── variables.tf
├── LICENSE
├── main.tf # Main game
├── README.md
├── terraform.tfstate # Our state file, so we can change infra, rather then having to recreate it
└── variables.tf # Our configuration
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment