From 3b41751c3350bd82d6aa4f1d039a544c74e8b8b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Czoma?= Date: Tue, 9 Jul 2024 05:48:35 -0400 Subject: [PATCH] Adjusted module to require provider v1.0 or higher --- README.md | 2 +- internal/gen-template/provider.tf | 2 +- provider.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8d6620f..1e7dad0 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Note that the "rest consumer" and the "protected request headers" outputs are [s | Name | Version | |------|---------| -| [solacebroker](https://registry.terraform.io/providers/solaceproducts/solacebrokerappliance/latest) | ~> 0.9 | +| [solacebroker](https://registry.terraform.io/providers/solaceproducts/solacebrokerappliance/latest) | >= 1.0 | ## Resources diff --git a/internal/gen-template/provider.tf b/internal/gen-template/provider.tf index 315b7ce..046bcad 100644 --- a/internal/gen-template/provider.tf +++ b/internal/gen-template/provider.tf @@ -4,7 +4,7 @@ terraform { required_providers { solacebroker = { source = "registry.terraform.io/solaceproducts/solacebrokerappliance" - version = "~> 0.9" + version = ">= 1.0" } } } diff --git a/provider.tf b/provider.tf index 1df4291..f3d2ab4 100644 --- a/provider.tf +++ b/provider.tf @@ -18,7 +18,7 @@ terraform { required_providers { solacebroker = { source = "registry.terraform.io/solaceproducts/solacebrokerappliance" - version = "~> 0.9" + version = ">= 1.0" } } }