List view of AWS autoscaling group.
We use the AWS Console (web view) to display the information of the Auto Scaling Group (ASG). Also, we want to filter ASG search results using tags.
However, it is bothersome to do that with the aws
command.
The lsas
command displays ASG information similar to the AWS Console. The lsas
command also has a filter function.
The lsas CLI needs the AWS Access Key ID, and the AWS Secret Access Key to access the autoscaling group information. If you are able to access AWS information by AWS CLI, the lsas CLI is able to access AWS information same as AWS CLI.
- Configuring the AWS CLI
lsas -h
Usage of lsas:
-p print result header
-print
print result header
-i
Perform case insensitive matching. By default, grep is case sensitive.
--ignore-case
Perform case insensitive matching. By default, grep is case sensitive.
-r string
AWS region
-region string
AWS region
You can download binary from release page and place it in $PATH directory.
If you want to install on MacOS, you can use Homebrew.
brew tap budougumi0617/lsas
brew install budougumi0617/lsas/lsas
- Fork (https://github.com/budougumi0617/lsas/fork)
- Create a feature branch
- Commit your changes
- Rebase your local changes against the master branch
- Run test suite with the
go test ./...
command and confirm that it passes - Run
gofmt -s
- Create new Pull Request