-
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
6 changed files
with
137 additions
and
13 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.12-dev | ||
0.2.12 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
## lacework agent install | ||
|
||
install the datacollector agent on a remote host | ||
|
||
### Synopsis | ||
|
||
For single host installation of the Lacework agent via Secure Shell (SSH). | ||
|
||
When this command is executed without any additional flag, an interactive prompt will be | ||
launched to help gather the necessary authentication information to access the remote host. | ||
|
||
To authenticate to the remote host with a username and password. | ||
|
||
$ lacework agent install <host> --ssh_username <your-user> --ssh_password <secret> | ||
|
||
To authenticate to the remote host with an identity file instead. | ||
|
||
$ lacework agent install <user@host> -i /path/to/your/key | ||
|
||
To provide an agent access token of your choice, use the command 'lacework agent token list', | ||
select a token and pass it to the '--token' flag. | ||
|
||
$ lacework agent install <user@host> -i /path/to/your/key --token <token> | ||
|
||
|
||
``` | ||
lacework agent install <[user@]host> [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
--force override any pre-installed agent | ||
-h, --help help for install | ||
-i, --identity_file string identity (private key) for public key authentication (default "~/.ssh/id_rsa") | ||
--ssh_password string password for authentication | ||
--ssh_username string username to login with | ||
--token string agent access 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 | ||
|