From ad153ca455e5c18983702e83ffddbae0edd2426e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Czoma?= Date: Tue, 9 Jul 2024 05:48:08 -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 1a4c8eb..3324872 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Note that the "client username" and the "authorization group" outputs are [sensi | 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" } } }