diff --git a/examples/5tuple-rule/main.tf b/examples/5tuple-rule/main.tf index 4483fe2..70e8a38 100644 --- a/examples/5tuple-rule/main.tf +++ b/examples/5tuple-rule/main.tf @@ -3,7 +3,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.50.0" + version = ">= 4.50" } } } diff --git a/examples/complete/main.tf b/examples/complete/main.tf index bc1b03b..a7866e0 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -3,7 +3,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.50.0" + version = ">= 4.50.0" } } } diff --git a/examples/domain-rule/main.tf b/examples/domain-rule/main.tf index ac498e8..23c4222 100644 --- a/examples/domain-rule/main.tf +++ b/examples/domain-rule/main.tf @@ -3,7 +3,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.50.0" + version = ">= 4.50.0" } } } diff --git a/examples/e2e/providers.tf b/examples/e2e/providers.tf index 7a403b4..e74198e 100644 --- a/examples/e2e/providers.tf +++ b/examples/e2e/providers.tf @@ -3,7 +3,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.50.0" + version = ">= 4.50.0" } } } diff --git a/examples/suricta-rule/main.tf b/examples/suricta-rule/main.tf index cd8ddef..99e83f0 100644 --- a/examples/suricta-rule/main.tf +++ b/examples/suricta-rule/main.tf @@ -3,7 +3,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.50.0" + version = ">= 4.50.0" } } } diff --git a/versions.tf b/versions.tf index d2b0ba7..5d0bf43 100644 --- a/versions.tf +++ b/versions.tf @@ -3,7 +3,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.50" + version = ">= 4.50" } } }