Skip to content

Instantly share code, notes, and snippets.

@jonlunsford
Last active January 17, 2019 05:49
Show Gist options
  • Save jonlunsford/da93a7cb58e6453de6a47d5025c08e6f to your computer and use it in GitHub Desktop.
Save jonlunsford/da93a7cb58e6453de6a47d5025c08e6f to your computer and use it in GitHub Desktop.
# ./terraform/webhook_processor.tf
provider "aws" {
access_key = "ACCESS_KEY_HERE"
secret_key = "SECRET_KEY_HERE"
region = "us-west1"
}
resource "aws_instance" "webhook_processor" {
ami = "ami-063aa838bd7631e0b" # Ubuntu 18.04
instance_type = "t2.micro"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment