Skip to content

Commit

Permalink
move aws provider version to provider block
Browse files Browse the repository at this point in the history
  • Loading branch information
avrohomgottlieb committed Nov 22, 2024
1 parent bf43e39 commit 6f7b666
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 6f7b666

Please sign in to comment.