Skip to content

Commit

Permalink
Making version requirement flexible instead of prefer specific
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyait committed Feb 1, 2024
1 parent a95f890 commit 41d10a3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/5tuple-rule/main.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.50.0"
version = ">= 4.50"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/main.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.50.0"
version = ">= 4.50.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/domain-rule/main.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.50.0"
version = ">= 4.50.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/e2e/providers.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.50.0"
version = ">= 4.50.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/suricta-rule/main.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.50.0"
version = ">= 4.50.0"
}
}
}
Expand Down
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.50"
version = ">= 4.50"
}
}
}

0 comments on commit 41d10a3

Please sign in to comment.