diff --git a/README.md b/README.md
index a324e70..59ef3c8 100644
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@ Outputs:
| 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"
}
}
}