Skip to content

Commit

Permalink
release: v1.20.0 (#1276)
Browse files Browse the repository at this point in the history
Signed-off-by: Lacework <tech-ally@lacework.net>
  • Loading branch information
lacework-releng authored May 15, 2023
1 parent c027b0f commit 2abf964
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 39 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# v1.20.0

## Features
* feat(aws-install): add `credential_profile` flag (#1274) (Nick Schmeller)([c027b0f3](https://github.com/lacework/go-sdk/commit/c027b0f3a46319fc8ecedbe495a98d326d36c654))
## Other Changes
* ci: version bump to v1.19.1-dev (Lacework)([3d733d57](https://github.com/lacework/go-sdk/commit/3d733d57b6a65a4a6013f51112d3a209a912bfea))
---
# v1.19.0

## Features
Expand Down
7 changes: 3 additions & 4 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# Release Notes
Another day, another release. These are the release notes for the version `v1.19.0`.
Another day, another release. These are the release notes for the version `v1.20.0`.

## Features
* feat: host vuln time range flags (#1270) (jonathan stewart)([6154c81b](https://github.com/lacework/go-sdk/commit/6154c81bbc805b49ca76af5cd35d176dbe653576))
* feat: CloudTrail S3 bucket notifications (#1269) (jonathan stewart)([ff326af2](https://github.com/lacework/go-sdk/commit/ff326af23f9cc55921b4938e9e859d2435a5ead1))
* feat(aws-install): add `credential_profile` flag (#1274) (Nick Schmeller)([c027b0f3](https://github.com/lacework/go-sdk/commit/c027b0f3a46319fc8ecedbe495a98d326d36c654))
## Other Changes
* ci: version bump to v1.18.5-dev (Lacework)([fd9d33a5](https://github.com/lacework/go-sdk/commit/fd9d33a57bc3057d33ac3c037a4f7ed9dce1f086))
* ci: version bump to v1.19.1-dev (Lacework)([3d733d57](https://github.com/lacework/go-sdk/commit/3d733d57b6a65a4a6013f51112d3a209a912bfea))

## :whale: [Docker Image](https://hub.docker.com/r/lacework/lacework-cli)
```
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.19.1-dev
1.20.0
4 changes: 2 additions & 2 deletions api/version.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 14 additions & 9 deletions cli/docs/lacework_agent_aws-install_ec2ic.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ To explicitly specify the server URL that the agent will connect to:

lacework agent aws-install ec2ic --server_url https://your.server.url.lacework.net

To specify an AWS credential profile other than 'default':

lacework agent aws-install ec2ic --credential_profile aws-profile-name

AWS credentials are read from the following environment variables:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
Expand All @@ -58,15 +62,16 @@ lacework agent aws-install ec2ic [flags]
### Options

```
-h, --help help for ec2ic
-r, --include_regions strings list of regions to filter on
-n, --max_parallelism int maximum number of workers executing AWS API calls, set if rate limits are lower or higher than normal (default 50)
--server_url https:// server URL that agents will talk to, prefixed with https:// (default "https://api.lacework.net")
--ssh_username string username to login with
--tag strings only install agents on infra with this tag
--tag_key string only install agents on infra with this tag key set
--token string agent access token
--trust_host_key automatically add host keys to the ~/.ssh/known_hosts file (default true)
--credential_profile string AWS credential profile to use (default "default")
-h, --help help for ec2ic
-r, --include_regions strings list of regions to filter on
-n, --max_parallelism int maximum number of workers executing AWS API calls, set if rate limits are lower or higher than normal (default 50)
--server_url https:// server URL that agents will talk to, prefixed with https:// (default "https://api.lacework.net")
--ssh_username string username to login with
--tag strings only install agents on infra with this tag
--tag_key string only install agents on infra with this tag key set
--token string agent access token
--trust_host_key automatically add host keys to the ~/.ssh/known_hosts file (default true)
```

### Options inherited from parent commands
Expand Down
29 changes: 17 additions & 12 deletions cli/docs/lacework_agent_aws-install_ec2ssh.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ To authenticate using an identity file:

lacework agent aws-install ec2ssh -i /path/to/your/key

To specify an AWS credential profile other than 'default':

lacework agent aws-install ec2ssh --credential_profile aws-profile-name

The environment should contain AWS credentials in the following variables:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
Expand All @@ -63,18 +67,19 @@ lacework agent aws-install ec2ssh [flags]
### Options

```
-h, --help help for ec2ssh
-i, --identity_file string identity (private key) for public key authentication (default "~/.ssh/id_rsa")
-r, --include_regions strings list of regions to filter on
-n, --max_parallelism int maximum number of workers executing AWS API calls, set if rate limits are lower or higher than normal (default 50)
--server_url https:// server URL that agents will talk to, prefixed with https:// (default "https://api.lacework.net")
--ssh_password string password for authentication
--ssh_port int port to connect to on the remote host (default 22)
--ssh_username string username to login with
--tag strings only select instances with this tag
--tag_key string only install agents on infra with this tag key
--token string agent access token
--trust_host_key automatically add host keys to the ~/.ssh/known_hosts file (default true)
--credential_profile string AWS credential profile to use (default "default")
-h, --help help for ec2ssh
-i, --identity_file string identity (private key) for public key authentication (default "~/.ssh/id_rsa")
-r, --include_regions strings list of regions to filter on
-n, --max_parallelism int maximum number of workers executing AWS API calls, set if rate limits are lower or higher than normal (default 50)
--server_url https:// server URL that agents will talk to, prefixed with https:// (default "https://api.lacework.net")
--ssh_password string password for authentication
--ssh_port int port to connect to on the remote host (default 22)
--ssh_username string username to login with
--tag strings only select instances with this tag
--tag_key string only install agents on infra with this tag key
--token string agent access token
--trust_host_key automatically add host keys to the ~/.ssh/known_hosts file (default true)
```

### Options inherited from parent commands
Expand Down
27 changes: 16 additions & 11 deletions cli/docs/lacework_agent_aws-install_ec2ssm.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ To explicitly specify the server URL that the agent will connect to:

lacework agent aws-install ec2ssm --server_url https://your.server.url.lacework.net

To specify an AWS credential profile other than 'default':

lacework agent aws-install ec2ssm --credential_profile aws-profile-name

AWS credentials are read from the following environment variables:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
Expand All @@ -67,17 +71,18 @@ lacework agent aws-install ec2ssm [flags]
### Options

```
-d, --dry_run set this flag to print out the target instances and exit
-f, --force_reinstall set this flag to force-reinstall the agent, even if already running on the target instance
-h, --help help for ec2ssm
--iam_role_name string IAM role name (not ARN) with SSM policy, if not provided then an ephemeral role will be created
-r, --include_regions strings list of regions to filter on
-n, --max_parallelism int maximum number of workers executing AWS API calls, set if rate limits are lower or higher than normal (default 50)
--server_url https:// server URL that agents will talk to, prefixed with https:// (default "https://api.lacework.net")
--skip_iam_role_creation set this flag to skip creating an IAM role and instance profile and associating the instance profile. Assumes all instances are already setup for SSM
--tag strings only install agents on infra with this tag
--tag_key string only install agents on infra with this tag key set
--token string agent access token
--credential_profile string AWS credential profile to use (default "default")
-d, --dry_run set this flag to print out the target instances and exit
-f, --force_reinstall set this flag to force-reinstall the agent, even if already running on the target instance
-h, --help help for ec2ssm
--iam_role_name string IAM role name (not ARN) with SSM policy, if not provided then an ephemeral role will be created
-r, --include_regions strings list of regions to filter on
-n, --max_parallelism int maximum number of workers executing AWS API calls, set if rate limits are lower or higher than normal (default 50)
--server_url https:// server URL that agents will talk to, prefixed with https:// (default "https://api.lacework.net")
--skip_iam_role_creation set this flag to skip creating an IAM role and instance profile and associating the instance profile. Assumes all instances are already setup for SSM
--tag strings only install agents on infra with this tag
--tag_key string only install agents on infra with this tag key set
--token string agent access token
```

### Options inherited from parent commands
Expand Down

0 comments on commit 2abf964

Please sign in to comment.