One-Env-CLI is a command-line tool that streamlines environment creation using your password manager as the provider. It provides a convenient way to manage and create environments, such as Postman environments, quickly and securely.
This entire project is currently in beta. All features and functionality are subject to change.
To use this project, you need to have the following dependencies installed (more password managers and plugins are able to be developed):
Password managers:
- 1Password
or
- BitWarden
Plugins:
- If using BitWarden, run bw sync to pull the latest vault data from the server.
- If using BitWarden, only Custom Fields data will be passed into the plugin.
You can use Homebrew (on macOS or Linux) to install one-env-cli.
Run the following command to install the tool:
brew tap ericflores108/tap
brew install one-env-cli
To use One-Env-CLI, run the following command:
one-env-cli [command] [flags]
add
: Add a password manager item to an integrated application.postman
: Add a password manager item to create a Postman environment. The workspace is set to default.
-i, --item
: Specify the item name to add. Currently, the item must be a unique name in your password manager.-w, --workspace
: Specify the Postman workspace name to add the environment to.-v, --verbose
: Enable verbose output.
One-Env-CLI uses a configuration file to store settings. The default configuration file is located in the directory, ~/.one-env-cli
, and is in JSON format.
The default configuration file looks like this:
{
"plugin": {
"postman": {
"keyName": "PostmanAPI",
"type": "api-key"
},
"gcp": {
"type": "cli"
}
},
"provider": {
"op": {
"vault": "Developer",
"enabled": true
},
"bw": {
"enabled": false
}
},
"cli": {
"logging": {
"level": "debug",
"encoding": "json",
"outputPaths": [
"tmp/log/one-env-cli.json"
]
}
}
}
You can modify the configuration file to suit your needs. The available options are:
plugin.postman.keyName
: The name of the 1Password item that contains the Postman API key.plugin.postman.keySecretName
: The name of the secret field within the 1Password item that holds the Postman API key.provider.op.vault
: The name of the 1Password vault to use.provider.op.enabled
: Enable the application to use 1Password.provider.bw.enabled
: Enable the application to use BitWarden.cli.logging.level
: The logging level (e.g., "debug", "info", "error").cli.logging.encoding
: The encoding format for the log files (e.g., "json").cli.logging.outputPaths
: An array of file paths where the logs will be written.
You can use the config
command to update certain aspects of the configuration. Currently, it supports setting the active provider.
To set the active provider, use the following command:
one-env-cli config set-provider [provider]
Where [provider]
is either op
for 1Password or bw
for BitWarden.
For example, to set 1Password as the active provider:
one-env-cli config set-provider op
Or to set BitWarden as the active provider:
one-env-cli config set-provider bw
This command will update the configuration file to enable the specified provider and disable the other.
Note: Additional configuration options will be available in future releases.
Here's an example of how to use One-Env-CLI to create a Postman environment:
one-env-cli add postman -i Strava
This command will retrieve the specified item, transform it into a Postman environment, and create the environment in Postman.
All password manager secrets are retrieved and authenticated through their respective CLI applications. No passwords or data is stored, instead it passes through from one environment to another.
One-Env-CLI is licensed under the MIT License.
If you have any questions or suggestions, feel free to reach out to the maintainer:
- Eric Flores
- Email: [email protected]