Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.81 KB

service-keys.md

File metadata and controls

32 lines (24 loc) · 1.81 KB

Table of Contents

  1. Open Service Broker Framework (by evoila)
  2. Components
  3. Configuring a Service Broker
  4. Service Keys
  5. Backup Agent
  6. Development
  7. Local Deployment
  8. Open Service Broker API Features
  9. IDE & Runtime
  10. Contribution
  11. License

Service Keys

Service Keys is a functionality introduced by Cloud Foundry, which enables users to create credentials, which are not bound to an specific application but instead used to connect to a Servce Instance from the outside. A Service Key can be created in Cloud Foundry via cf create-service-key serviceInstanceName.

Offering this functionality makes sense, when you have Services like database, where user might want to access the database with a fat client to analyse problems. To offer this functionality in your Service Broker see the according section in the configuration pages of this documentation.

Having defined this property, the Service Key functionality should be autowired and configured automatically. It reuses the bind-service functionality of the Service Broker to create Service Keys.

Be aware, that the Service Broker does not change the underlying network architecture to realize external access to use the created Service Key, therefore you have to have access to the infrastructure, where the broker deploys its Service Instances. One way to do this is using cf ssh for an Application and access the Service Instance from there.


<- Previous   |   Next ->