Skip to content

Commit

Permalink
Updated required provider version
Browse files Browse the repository at this point in the history
  • Loading branch information
bczoma committed Jul 9, 2024
1 parent 46f8786 commit 1a8bd6d
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 15 deletions.
1 change: 1 addition & 0 deletions ci/scripts/test-module.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ cat main.tf
terraform init
terraform validate
# Create
export SOLACEBROKER_SKIP_API_CHECK=true
terraform plan
terraform apply -auto-approve
# terraform plan | grep "No changes"
Expand Down
7 changes: 3 additions & 4 deletions examples/basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@
# limitations under the License.

provider "solacebroker" {
username = "admin"
password = "admin"
url = "http://localhost:8080"
skip_api_check = true
username = "admin"
password = "admin"
url = "http://localhost:8080"
}

module "testcf" {
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ terraform {
required_providers {
solacebroker = {
source = "registry.terraform.io/solaceproducts/solacebrokerappliance"
version = "~> 0.9"
version = "~> 1.0"
}
}
}
7 changes: 3 additions & 4 deletions examples/local-transactions-support/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@
# limitations under the License.

provider "solacebroker" {
username = "admin"
password = "admin"
url = "http://localhost:8080"
skip_api_check = true
username = "admin"
password = "admin"
url = "http://localhost:8080"
}

module "testcf" {
Expand Down
2 changes: 1 addition & 1 deletion examples/local-transactions-support/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ terraform {
required_providers {
solacebroker = {
source = "registry.terraform.io/solaceproducts/solacebrokerappliance"
version = "~> 0.9"
version = "~> 1.0"
}
}
}
7 changes: 3 additions & 4 deletions examples/xa-transactions-support/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@
# limitations under the License.

provider "solacebroker" {
username = "admin"
password = "admin"
url = "http://localhost:8080"
skip_api_check = true
username = "admin"
password = "admin"
url = "http://localhost:8080"
}

module "testcf" {
Expand Down
2 changes: 1 addition & 1 deletion examples/xa-transactions-support/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ terraform {
required_providers {
solacebroker = {
source = "registry.terraform.io/solaceproducts/solacebrokerappliance"
version = "~> 0.9"
version = "~> 1.0"
}
}
}

0 comments on commit 1a8bd6d

Please sign in to comment.