Skip to content

Instantly share code, notes, and snippets.

@kevinlondon
Created April 26, 2016 19:57
Show Gist options
  • Save kevinlondon/d792b2e3b5e36508869e5b9e218d3c3b to your computer and use it in GitHub Desktop.
Save kevinlondon/d792b2e3b5e36508869e5b9e218d3c3b to your computer and use it in GitHub Desktop.
Terraform variables for DevOps from Scratch
# These variables come from the terraform.tfvars file
variable "aws_access_key" {}
variable "aws_secret_key" {}
variable "aws_region" {
description = "AWS region in which to launch the servers."
default = "us-east-1"
}
variable "public_key_path" {
default = "~/.ssh/id_rsa.pub"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment