@@ -165,7 +165,7 @@ For information about configuring service plans for use by developers, a platfor
165165After you have identified the service plan to use, create a service instance:
166166
167167``` shell
168- cf create-service p-identity SERVICE_PLAN_NAME MY_SERVICE_INSTANCE
168+ cf create-service p-identity your-plan sampleService
169169```
170170
171171#### Bind and configure with app manifest
@@ -197,13 +197,13 @@ Then you can configure the SSO binding with the web interface.
1971971. Bind service to your app:
198198
199199 ` ` ` shell
200- cf bind-service MY_APPLICATION MY_SERVICE_INSTANCE
200+ cf bind-service sampleApp sampleService
201201 ```
202202
2032031 . Restage the app to pick up change:
204204
205205 ``` shell
206- cf restage MY_APPLICATION
206+ cf restage sampleApp
207207 ```
208208
209209For more information, see:
@@ -220,13 +220,13 @@ There is no service broker available to manage service instances or bindings for
220220This command is an example of how the service instance can be created:
221221
222222``` shell
223- cf cups MY_SERVICE_INSTANCE -p ' {"auth_domain": "https://uaa.login.sys.cf-app.com","grant_types": [ "authorization_code", "client_credentials" ],"client_secret": "SOME_CLIENT_SECRET","client_id": "SOME_CLIENT_ID"}'
223+ cf cups sampleService -p ' {"auth_domain": "https://uaa.login.sys.cf-app.com","grant_types": [ "authorization_code", "client_credentials" ],"client_secret": "SOME_CLIENT_SECRET","client_id": "SOME_CLIENT_ID"}'
224224```
225225
226226And to bind the service instance to the app:
227227
228228``` shell
229- cf bind-service MY_APPLICATION MY_SERVICE_INSTANCE
229+ cf bind-service sampleApp sampleService
230230```
231231
232232For additional information, see the [ UAA documentation] ( https://docs.cloudfoundry.org/concepts/architecture/uaa.html ) .
0 commit comments