Skip to content

Commit

Permalink
Merge pull request #973 from AlexsLemonade/avrohom/tf-move-version-to…
Browse files Browse the repository at this point in the history
…-provider-block

Move aws provider version to provider block
  • Loading branch information
avrohomgottlieb authored Nov 22, 2024
2 parents bf43e39 + 6f7b666 commit b9bc9b0
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions infrastructure/provider.tf
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "3.37.0"
}
}
}
# TODO: remove comments when version upgraded
# terraform {
# required_providers {
# aws = {
# source = "hashicorp/aws"
# version = "3.37.0"
# }
# }
#}


provider "aws" {
region = var.region
version = ">= 3.37.0, < 4.0.0"

default_tags {
tags = {
Expand Down

0 comments on commit b9bc9b0

Please sign in to comment.