Skip to content

Instantly share code, notes, and snippets.

@theCaptN21
Last active February 2, 2023 18:29
Show Gist options
  • Save theCaptN21/adc48148db639336d6a8d9167a9f68f6 to your computer and use it in GitHub Desktop.
Save theCaptN21/adc48148db639336d6a8d9167a9f68f6 to your computer and use it in GitHub Desktop.
Terraform main.tf file
#Main Terraform file with the providers
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
}
}
}
provider "aws" {
region = "us-east-1"
}
data "aws_vpc" "default" {
default = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment