Skip to content

Commit

Permalink
fix(aws-eks-tutorial): add terraform boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
jordan-acosta committed Dec 11, 2024
1 parent 25a86ff commit e0389a9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions aws-eks-tutorial/components/certificate/providers.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
provider "aws" {}
12 changes: 12 additions & 0 deletions aws-eks-tutorial/components/certificate/versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
terraform {
required_version = ">= 1.7.5"

backend "s3" {}

required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 4.0"
}
}
}

0 comments on commit e0389a9

Please sign in to comment.