How to use the @clevercloud/client/cjs/api/application.js.removeEnvVar function in @clevercloud/client

To help you get started, we’ve selected a few @clevercloud/client examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github CleverCloud / clever-tools / src / commands / env.js View on Github external
async function rm (params) {
  const [envName] = params.args;
  const { alias } = params.options;
  const { org_id, app_id: appId } = await AppConfig.getAppData(alias).toPromise();

  await application.removeEnvVar({ id: org_id, appId, envName }).then(sendToApi);

  Logger.println('Your environment variable has been successfully removed');
};