Skip to content

Instantly share code, notes, and snippets.

View michaeltuszynski's full-sized avatar

Michael Tuszynski michaeltuszynski

View GitHub Profile
@michaeltuszynski
michaeltuszynski / versions.tf
Created September 20, 2023 22:33
Setting up a default AWS provider for use with Terraform on OSX
# versions.tf | Main Configuration
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.16"
}
}