Last active
August 29, 2015 14:00
-
-
Save danhigham/11157580 to your computer and use it in GitHub Desktop.
Retrieve service details from CF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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