Skip to content

Commit

Permalink
Updated version constraint to normalized form (#16)
Browse files Browse the repository at this point in the history
Initializing the backend...
│ Error: failed to read dependency lock file: Invalid provider version constraints: The recorded version constraints for provider registry.terraform.io/hashicorp/aws must be written in normalized form: ">= 4.0.0".

This worked on version 1.0.6, however now it throws the above error. After changing the version manually to 4.0.0 it worked.
  • Loading branch information
AlinVina authored Apr 12, 2023
1 parent 811b6f5 commit 04faffb
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 @@ -3,7 +3,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 4"
version = ">= 4.0.0"
}
}
}

0 comments on commit 04faffb

Please sign in to comment.