Skip to content

Commit

Permalink
fix: aws required_provider version constraint (#74)
Browse files Browse the repository at this point in the history
The `multi_region` attribute in the KMS key was created in version
3.64.0, we should pin the version of the aws provider to be major than
that version.

hashicorp/terraform-provider-aws#20533

Closes #73

Signed-off-by: Salim Afiune Maya <[email protected]>
  • Loading branch information
afiune authored Mar 3, 2022
1 parent 1474a02 commit ea075eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_version = ">= 0.12.31"

required_providers {
aws = "~> 3.0"
aws = "~> 3.64"
random = ">= 2.1"
time = "~> 0.6"
lacework = {
Expand Down

0 comments on commit ea075eb

Please sign in to comment.