Skip to content

Instantly share code, notes, and snippets.

@elliotforbes
Created July 3, 2018 14:12
Show Gist options
  • Select an option

  • Save elliotforbes/299dbaad6838c5b65b0590ea3191db1b to your computer and use it in GitHub Desktop.

Select an option

Save elliotforbes/299dbaad6838c5b65b0590ea3191db1b to your computer and use it in GitHub Desktop.

Revisions

  1. Elliot Forbes created this gist Jul 3, 2018.
    10 changes: 10 additions & 0 deletions test.tf
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    provider "aws" {
    access_key = "ACCESS_KEY_HERE"
    secret_key = "SECRET_KEY_HERE"
    region = "us-east-1"
    }

    resource "aws_instance" "example" {
    ami = "ami-2757f631"
    instance_type = "t2.micro"
    }