Skip to content

Latest commit

 

History

History
56 lines (26 loc) · 2.63 KB

create-service-instances-using-the-cloud-foundry-command-line-interface-a872531.md

File metadata and controls

56 lines (26 loc) · 2.63 KB

Create Service Instances Using the Cloud Foundry Command Line Interface

You can use the Cloud Foundry Command Line Interface (cf CLI) to create service instances.

Procedure

  1. (Optional) Open a command line and enter the following string to list all services and service plans that are available in your org:

    cf marketplace
    
  2. Run the following command to create a service instance:

    cf create-service SERVICE PLAN SERVICE_INSTANCE
    

    Specify the following parameters:

    • SERVICE: The name of the service you want to create an instance of.

    • PLAN: The name of the service plan you want to use.

    • SERVICE_INSTANCE: The new name for your service instance. Use only alphanumeric characters, hyphens, and underscores.

Related Information

Binding Service Instances to Applications

Creating User-Provided Service Instances

About Services