I'm new to cloud foundry and taking over a configuration that was set up by someone else. I want to inspect the contents of several user-provided services, to see what values are stored in each one. But the docs here only tell you how to see ALL the env values bound for an app. I want to be able to display what is in just ONE of the particular user-provided services.
--
You received this message because you are subscribed to the Google Groups "Cloud Foundry Developers" group.
To view this discussion on the web visit https://groups.google.com/a/cloudfoundry.org/d/msgid/vcap-dev/d34cbfcf-8ef1-42d7-955d-11ce08feb8ab%40cloudfoundry.org.
To unsubscribe from this group and stop receiving emails from it, send an email to vcap-dev+u...@cloudfoundry.org.
If the user provided service instances are bound to an app, you can get the credentials by inspecting the environment variables for the app:
cf env my app
--
You received this message because you are subscribed to a topic in the Google Groups "Cloud Foundry Developers" group.
To view this discussion on the web visit https://groups.google.com/a/cloudfoundry.org/d/msgid/vcap-dev/a6a7b385-1885-4809-9cfb-2d99de745614%40cloudfoundry.org.
Kevin Pauli
Thanks Shannon, but there are some services that are not bound to any app. It seemed silly to bind them to an app just so I could see what was in them. :) I will try James' suggestion.