Last active
June 6, 2021 18:19
-
-
Save rdalbuquerque/f47609fcdad335511feac05149291678 to your computer and use it in GitHub Desktop.
Terraform for Kubernetes lab - 1
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
terraform { | |
backend "local" { | |
path = "state/terraform.tfstate" | |
} | |
required_providers { | |
aws = { | |
source = "hashicorp/aws" | |
version = "~> 3.0" | |
} | |
} | |
} | |
# Configure the AWS Provider | |
# Credentials and default region are set on envrionment variables | |
provider "aws" {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment