Created
June 4, 2022 03:28
-
-
Save cromyhector/c03fa18e7a30d47d3bea58912da37c29 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### --- ec2/providers.tf --- | |
terraform { | |
required_providers { | |
aws = { | |
source = "hashicorp/aws" | |
version = "~> 3.27" | |
} | |
} | |
required_version = ">= 0.14.9" | |
} | |
provider "aws" { | |
profile = "default" | |
region = var.region | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment