Skip to content

Commit

Permalink
feat: Making version requirement flexible instead of prefer specific (#…
Browse files Browse the repository at this point in the history
…16)

* Making version requirement flexible instead of prefer specific

* terraform-docs: automated action
---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
mattyait and github-actions[bot] committed Feb 1, 2024
1 parent a95f890 commit 1f03cbe
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ module "network_firewall" {
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >=1.0.3 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 4.50.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.50 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | ~> 4.50.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.50 |

## Modules

Expand Down
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 1f03cbe

Please sign in to comment.