Skip to content

cloudfoundry-community/vcap-squash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vcap-squash Build Status

Turn VCAP_SERVICES into flat env vars

Download

Visit the releases page and download the binary for your system

Usage

This application will parse the VCAP_SERVICES environment variable and output the unix exports of the flattened version.

Flattened vcap environment variables start with the service name and append _ for each nested credential. For example:

$ VCAP_SERVICES='{ "user-provided": [ {
  "name": "myservice",
  "credentials": {
    "url": "myservice.com",
    "username": "josh",
    "password": "secret",
    "nested": {
      "key": "value",
      "number": 123
    }
  }
} ] }' ./vcap-squash

export MYSERVICE_URL="myservice.com"
export MYSERVICE_USERNAME="josh"
export MYSERVICE_PASSWORD="secret"
export MYSERVICE_NESTED_KEY="value"
export MYSERVICE_NESTED_NUMBER=123

To set your environment variables using this output, use

eval "$(./vcap-squash)"

In Cloud Foundry

Add the proper vcap-squash binary to your project root (depending on cf stack)

Create a .profile.d/setenv.sh file to push along with your repo

#!/bin/sh
eval $(./vcap-squash)

Development

To run all basic tasks, use

$ make

Dependencies

To download needed libraries:

$ make deps

Test

To run the test suite, use

$ make test

Run the test suite in development/watch mode:

$ make watch

Build local

To build a binary using your go env:

$ make build-local

Build all

Build the binary for all systems:

$ make build

the binaries will be placed in ./out