As projects grow, team members drop in and out and the documented state of environment variables become a mystery, and left in a precarious state not knowing if a varaible is required any more looking at the Circle UI.
CircleCI Context Validator (CCV for short) makes use of a simple yaml configuration file, refer to the example. The configuration file refers to the names of the context and associated environment variables. The config should reflect what should only be present in your context (can be more than one, should you need that), is then compared against the API giving back user input on valid or failures.
- CircleCI using Contexts
- A CircleCI Organization ID
- NOTE: Retrieve ID at the following https://app.circleci.com/settings/organization/github/YOUR_ORG_NAME_HERE/overview
- CircleCI Personal API Token
- NOTE: Managing API Tokens
$ npm install -g @armakuni/circleci-context-validatoror
$ yarn global add @armakuni/circleci-context-validator$ ccv (--version)
@armakuni/circleci-context-validator/<semver> darwin-x64 node-v16.13.1
$ ccv --help [COMMAND]
USAGE
$ CIRCLECI_PERSONAL_ACCESS_TOKEN=example-token ccv circleci validate --context-definitions example/context_validator.yml
USAGE
$ ccv help [COMMAND] [-n]
ARGUMENTS
COMMAND Command to show help for.
FLAGS
-n, --nested-commands Include all nested commands in the output.
DESCRIPTION
Display help for ccv.
Run the CLI tool:
CIRCLECI_PERSONAL_ACCESS_TOKEN=example-token ccv circleci validate --context-definitions .circleci/context_validator.ymlContext exists, associated env var values configured exist in context definition yaml.
Context "context-validator-ci" is valid
Success
Configured in context definition yaml, but not present in CircleCI Context
Missing Env Var "API_KEY" in Context "context-validator-ci"
Failures 1
Configured in context definition yaml, but not present in CircleCI Context
Context "context-validator-cid" is missing
Failures 1
A value is not configured, but exists in circleci
Unexpected Env Var "NPM_TOKEN" in Context "context-validator-ci"
Failures 1
How to dev on circleci-context-validator, for a quick start guide checkout oclif which this tool makes heavy use of.
Command entrypoint is located: circleci-context-validator/src/commands/circleci/validate
$ cd circleci-context-validator
$ nvm use .
CIRCLECI_PERSONAL_ACCESS_TOKEN=generate_personal_access_token bin/dev circleci validate --context-definitions example/context_validator.yml- Pretty console output
- Different output formats e.g. JSON
- Support for standard Environment Variables i.e. non-context associated
- Autocomplete commands
- Retrieve existing context and associated env vars to pre-populate a context_validator.yml