Skip to content

Instantly share code, notes, and snippets.

@jaabanks
Created October 26, 2021 05:22
Show Gist options
  • Save jaabanks/b44b3790781fdbec1c7b2e39114758e0 to your computer and use it in GitHub Desktop.
Save jaabanks/b44b3790781fdbec1c7b2e39114758e0 to your computer and use it in GitHub Desktop.
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3.27"
}
}
required_version = ">= 0.14.9"
}
provider "aws" {
profile = "default"
region = "us-west-2"
}
module "ec2-module" {
source = "./ec2-module"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment