· 7 years ago · Jan 17, 2019, 07:09 PM
1# ./terraform/webhook_processor.tf
2
3provider "aws" {
4 access_key = "ACCESS_KEY_HERE"
5 secret_key = "SECRET_KEY_HERE"
6 region = "us-west1"
7}
8
9resource "aws_instance" "webhook_processor" {
10 ami = "ami-063aa838bd7631e0b" # Ubuntu 18.04
11 instance_type = "t2.micro"
12}