Skip to content

Instantly share code, notes, and snippets.

View sivaprasadjanjala's full-sized avatar

sivaprasadjanjala

View GitHub Profile
@sivaprasadjanjala
sivaprasadjanjala / ec2.tf
Created July 24, 2017 14:59 — 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}"
}