Skip to content

Instantly share code, notes, and snippets.

View vijayanpackeriswamyget's full-sized avatar

vijayanpackeriswamyget

View GitHub Profile
@vijayanpackeriswamyget
vijayanpackeriswamyget / ec2.tf
Created February 16, 2017 12:36 — forked from solarce/ec2.tf
terraform.io example template for ec2 instance with tags
# The various ${var.foo} come from variables.tf
# Specify the provider and access details
provider "aws" {
region = "${var.aws_region}"
access_key = "${var.aws_access_key}"
secret_key = "${var.aws_secret_key}"
}