Skip to content

Instantly share code, notes, and snippets.

@rdalbuquerque
Last active June 6, 2021 18:19
Show Gist options
  • Save rdalbuquerque/f47609fcdad335511feac05149291678 to your computer and use it in GitHub Desktop.
Save rdalbuquerque/f47609fcdad335511feac05149291678 to your computer and use it in GitHub Desktop.
Terraform for Kubernetes lab - 1
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