Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
ember-cli-deploy-consul-config
Advanced tools
An EmberCLI Deploy plugin to retrieve config values from Hashicorp's Consul
An EmberCLI Deploy plugin to retrieve config from Consul and add it to process.env for use by other plugins' config
This plugin pulls the specified keys from Consul and puts the values on
process.env
so that they can be referenced in config/deploy.js
by other
plugin's configs.
A plugin is an addon that can be executed as a part of the ember-cli-deploy pipeline. A plugin will implement one or more of the ember-cli-deploy's pipeline hooks.
For more information on what plugins are and how they work, please refer to the Plugin Documentation.
To get up and running quickly, do the following:
$ ember install ember-cli-deploy-consul-config
config/deploy.js
ENV['consul-config'] = {
host: '<consul-host>',
port: <consul-port>,
keys: {
'config/aws-access-token': 'AWS_ACCESS_TOKEN'
}
}
config/deploy.js
ENV.s3 = {
awsAccessToken: process.env.AWS_ACCESS_TOKEN
}
$ ember deploy production
You would use this plugin if you want to store configuration values in Consul's KV store, instead of as environment variables on the machine that is running ember-cli-deploy.
Run the following command in your terminal:
ember install ember-cli-deploy-consul-config
For detailed information on what plugin hooks are and how they work, please refer to the Plugin Documentation.
configure
setup
For detailed information on how configuration of plugins works, please refer to the Plugin Documentation.
The Consul host.
Default: 'localhost'
The Consul port.
Default: 8500
Whether or not to enable HTTPS.
Default: true
An ACL token to be included with each request to Consul.
Default: null
An object containing properties that map the keys on Consul to the process.env
property you'd like to access the config value with. For example, the following
config:
// config/deploy.js
ENV['consul-config'] = {
keys: {
'config/aws-access-token': 'AWS_ACCESS_TOKEN'
}
};
would make the the config value available at process.env.AWS_ACCESS_TOKEN
.
This plugin has no prerequisites.
$ npm test
Made with :heart: by The Kayako Engineering Team
FAQs
An EmberCLI Deploy plugin to retrieve config values from Hashicorp's Consul
We found that ember-cli-deploy-consul-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.