Skip to content

Commit

Permalink
Merge pull request #29 from Tar-Elendil/provider_constraint_update
Browse files Browse the repository at this point in the history
remove max version constraint on provider
  • Loading branch information
patrickherrera authored Oct 17, 2022
2 parents 5c9c396 + 89df7c3 commit 699dcf8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion infra/terraform/modules/_auth/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3"
version = ">= 3"
}
}
}
2 changes: 1 addition & 1 deletion infra/terraform/modules/_lambda/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3"
version = ">= 3"
}
}
}
2 changes: 1 addition & 1 deletion infra/terraform/modules/okta_native/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3"
version = ">= 3"
}
}
}

0 comments on commit 699dcf8

Please sign in to comment.