You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is in reference to the example generate command provided in the documentation. The example states that the order of parameters provided to generate can be:
Specifically, the <resource_type>.<resource_name> & output filename should be provided right after the generate command.
Please update the documentation to reflect the correct parameter order.
Steps to Reproduce
Run the sample generate command provided in the documentation. It should fail with Error: Terraform resource address is not in correct format. Should be in the format <resource_type>.<resource_name>
Solace Broker version
10.9.1.119-2
Solace API
No response
Solace API version
No response
The text was updated successfully, but these errors were encountered:
From the error reported, it appears the issue is with the Terraform resource address format. Can you double check if exactly the same format was used between your working and non-working examples (an accidental space or need for URL-encoding could matter)? Also, can you check how my tests above work for you?
Bug Description
This is in reference to the example
generate
command provided in the documentation. The example states that the order of parameters provided togenerate
can be:./terraform-provider-solacebroker_v1.1.0 generate
--username=<some_name>
--password=<some_value>
--url=https://<broker_url>
solacebroker_msg_vpn_queue.q
demo-service/sample_queue my-message-vpn-queue.tf`This parameter order fails with
Error: Terraform resource address is not in correct format. Should be in the format <resource_type>.<resource_name>
Expected Behavior
I expected the documented
generate
command to dump the broker configuration to a file.The correct order of parameters as provided by
./terraform-provider-solacebroker_v1.1.0 generate --help
is:./terraform-provider-solacebroker_v1.1.0 generate
solacebroker_msg_vpn_queue.q demo-service/sample_queue out.tf
--username=<some_name>
--password=<some_value>
--url=https://<broker_url>
Specifically, the <resource_type>.<resource_name> & output filename should be provided right after the generate command.
Please update the documentation to reflect the correct parameter order.
Steps to Reproduce
Run the sample
generate
command provided in the documentation. It should fail withError: Terraform resource address is not in correct format. Should be in the format <resource_type>.<resource_name>
Solace Broker version
10.9.1.119-2
Solace API
No response
Solace API version
No response
The text was updated successfully, but these errors were encountered: