Reputation: 37
I tried to create the Tone Analyzer service in IBM Cloud using
cf create-service tone_analyzer beta rtt-tone-analyzer
but I got "Could not find plan with name beta". What is the correct cf command or service plan?
Upvotes: 2
Views: 167
Reputation: 17176
You can find information about the Tone Analyzer in the IBM Cloud Catalog. There is a Lite, Standard and Premium plan available. Those plans can be specified in the create-service
command.
As an alternative, you could use the inofficial tool mycatalog, select the Tone Analyzer service, click on the CLI link. It brings up the possible CLI commands to create the different services. Here is the syntax for the free Lite plan.
ibmcloud cf create-service tone-analyzer lite <service-name>
Because most services are IAM-controlled, the Cloud Foundry-related syntax above should be replaced with the general resource command:
ibmcloud resource service-instance-create <service-name> tone-analyzer lite <region>
Upvotes: 2