-
Notifications
You must be signed in to change notification settings - Fork 25
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: Salim Afiune Maya <[email protected]>
- Loading branch information
Showing
25 changed files
with
339 additions
and
60 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 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 |
---|---|---|
@@ -1 +1 @@ | ||
0.2.10-dev | ||
0.2.10 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
## lacework agent | ||
|
||
manage Lacework agents | ||
|
||
### Synopsis | ||
|
||
Manage agents and agent access tokens in your account. | ||
|
||
To analyze application, host, and user behavior, Lacework uses a lightweight agent, | ||
which securely forwards collected metadata to the Lacework cloud for analysis. The | ||
agent requires minimal system resources and runs on most 64-bit Linux distributions. | ||
|
||
For a complete list of supported operating systems, visit: | ||
|
||
https://support.lacework.com/hc/en-us/articles/360005230014-Supported-Operating-Systems | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for agent | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-a, --account string account subdomain of URL (i.e. <ACCOUNT>.lacework.net) | ||
-k, --api_key string access key id | ||
-s, --api_secret string secret access key | ||
--debug turn on debug logging | ||
--json switch commands output from human-readable to json format | ||
--nocolor turn off colors | ||
--noninteractive turn off interactive mode (disable spinners, prompts, etc.) | ||
-p, --profile string switch between profiles configured at ~/.lacework.toml | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [lacework](lacework.md) - A tool to manage the Lacework cloud security platform. | ||
* [lacework agent token](lacework_agent_token.md) - manage agent access tokens | ||
|
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,40 @@ | ||
## lacework agent token | ||
|
||
manage agent access tokens | ||
|
||
### Synopsis | ||
|
||
Manage agent access tokens in your account. | ||
|
||
Agent tokens should be treated as secret and not published. A token uniquely identifies | ||
a Lacework customer. If you suspect your token has been publicly exposed or compromised, | ||
generate a new token, update the new token on all machines using the old token. When | ||
complete, the old token can safely be disabled without interrupting Lacework services. | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for token | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-a, --account string account subdomain of URL (i.e. <ACCOUNT>.lacework.net) | ||
-k, --api_key string access key id | ||
-s, --api_secret string secret access key | ||
--debug turn on debug logging | ||
--json switch commands output from human-readable to json format | ||
--nocolor turn off colors | ||
--noninteractive turn off interactive mode (disable spinners, prompts, etc.) | ||
-p, --profile string switch between profiles configured at ~/.lacework.toml | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [lacework agent](lacework_agent.md) - manage Lacework agents | ||
* [lacework agent token create](lacework_agent_token_create.md) - create a new agent access token | ||
* [lacework agent token list](lacework_agent_token_list.md) - list all agent access tokens | ||
* [lacework agent token show](lacework_agent_token_show.md) - show details about an agent access token | ||
* [lacework agent token update](lacework_agent_token_update.md) - update an agent access token | ||
|
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,35 @@ | ||
## lacework agent token create | ||
|
||
create a new agent access token | ||
|
||
### Synopsis | ||
|
||
Create a new agent access token. | ||
|
||
``` | ||
lacework agent token create <name> [description] [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for create | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-a, --account string account subdomain of URL (i.e. <ACCOUNT>.lacework.net) | ||
-k, --api_key string access key id | ||
-s, --api_secret string secret access key | ||
--debug turn on debug logging | ||
--json switch commands output from human-readable to json format | ||
--nocolor turn off colors | ||
--noninteractive turn off interactive mode (disable spinners, prompts, etc.) | ||
-p, --profile string switch between profiles configured at ~/.lacework.toml | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [lacework agent token](lacework_agent_token.md) - manage agent access tokens | ||
|
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,35 @@ | ||
## lacework agent token list | ||
|
||
list all agent access tokens | ||
|
||
### Synopsis | ||
|
||
List all agent access tokens. | ||
|
||
``` | ||
lacework agent token list [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for list | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-a, --account string account subdomain of URL (i.e. <ACCOUNT>.lacework.net) | ||
-k, --api_key string access key id | ||
-s, --api_secret string secret access key | ||
--debug turn on debug logging | ||
--json switch commands output from human-readable to json format | ||
--nocolor turn off colors | ||
--noninteractive turn off interactive mode (disable spinners, prompts, etc.) | ||
-p, --profile string switch between profiles configured at ~/.lacework.toml | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [lacework agent token](lacework_agent_token.md) - manage agent access tokens | ||
|
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,35 @@ | ||
## lacework agent token show | ||
|
||
show details about an agent access token | ||
|
||
### Synopsis | ||
|
||
Show details about an agent access token. | ||
|
||
``` | ||
lacework agent token show <token> [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for show | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-a, --account string account subdomain of URL (i.e. <ACCOUNT>.lacework.net) | ||
-k, --api_key string access key id | ||
-s, --api_secret string secret access key | ||
--debug turn on debug logging | ||
--json switch commands output from human-readable to json format | ||
--nocolor turn off colors | ||
--noninteractive turn off interactive mode (disable spinners, prompts, etc.) | ||
-p, --profile string switch between profiles configured at ~/.lacework.toml | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [lacework agent token](lacework_agent_token.md) - manage agent access tokens | ||
|
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,51 @@ | ||
## lacework agent token update | ||
|
||
update an agent access token | ||
|
||
### Synopsis | ||
|
||
Update an agent access token. | ||
|
||
To update the token name and description: | ||
|
||
$ lacework agent token update <token> --name dev --description "k8s deployment for dev" | ||
|
||
To disable a token: | ||
|
||
$ lacework agent token update <token> --disable | ||
|
||
To enable a token: | ||
|
||
$ lacework agent token update <token> --enable | ||
|
||
``` | ||
lacework agent token update <token> [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
--description string new agent access token description | ||
--disable disable agent access token | ||
--enable enable agent access token | ||
-h, --help help for update | ||
--name string new agent access token name | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-a, --account string account subdomain of URL (i.e. <ACCOUNT>.lacework.net) | ||
-k, --api_key string access key id | ||
-s, --api_secret string secret access key | ||
--debug turn on debug logging | ||
--json switch commands output from human-readable to json format | ||
--nocolor turn off colors | ||
--noninteractive turn off interactive mode (disable spinners, prompts, etc.) | ||
-p, --profile string switch between profiles configured at ~/.lacework.toml | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [lacework agent token](lacework_agent_token.md) - manage agent access tokens | ||
|
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
Oops, something went wrong.