-
Notifications
You must be signed in to change notification settings - Fork 437
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ian Maddaus <ian.maddaus@progress.com>
- Loading branch information
Showing
5 changed files
with
112 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
+++ | ||
title = "Add a Chef License Key" | ||
draft = false | ||
gh_repo = "chef-web-docs" | ||
|
||
[menu] | ||
[menu.overview] | ||
title = "Add License Key" | ||
identifier = "overview/licensing/Add License" | ||
parent = "overview/licensing" | ||
weight = 30 | ||
+++ | ||
|
||
This page describes how to add a license key to a Chef product. | ||
|
||
You can find your license key on the [customer support portal](https://community.progress.com/s/products-list). | ||
|
||
## Products | ||
|
||
The following products require a Chef License key to run: | ||
|
||
- [Chef InSpec 6 or greater](/inspec/license/) | ||
|
||
## Add license key | ||
|
||
Chef products accept a license key with either an environment variable or as a command line argument. | ||
|
||
License data is stored locally in configuration file at `$HOME/.chef/licenses.yaml`. | ||
|
||
### Command line option | ||
|
||
Use the `--chef-license-key` command line option to add a license key. | ||
|
||
For example | ||
|
||
```sh | ||
<CHEF_PRODUCT_COMMAND> --chef-license-key <LICENSE_KEY> | ||
``` | ||
|
||
### Environment variable | ||
|
||
Use the `CHEF_LICENSE_KEY` environment variable to add a license. | ||
|
||
For example | ||
|
||
```sh | ||
export CHEF_LICENSE_KEY=<LICENSE_KEY> | ||
<CHEF_PRODUCT_COMMAND> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters