Skip to content

Instantly share code, notes, and snippets.

@danhigham
Last active August 29, 2015 14:00
Show Gist options
  • Save danhigham/11157580 to your computer and use it in GitHub Desktop.
Save danhigham/11157580 to your computer and use it in GitHub Desktop.
Retrieve service details from CF
#!/usr/bin/env ruby
require 'cfoundry'
require 'json'
endpoint = 'https://api.run.pivotal.io'
app_name = 'my_app'
client = CFoundry::Client.get endpoint
client.login :username=> ENV['cf_user'], :password => ENV['cf_pass']
app = client.app_by_name app_name
service = JSON.parse(client.base.get(app.services.first.service_bindings_url))
# service
puts service.inspect
# credentials
puts service["resources"][0]["entity"]["credentials"].inspect
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment