Configure command completion for awslocal
masterSince awslocal is compatible with the aws CLI completion feature, you can enable tab-completion for your shell.
For Bash:
Add the following lines to your ~/.bashrc to register completion for both aws and awslocal:
complete -C '/usr/local/bin/aws_completer' aws
complete -C '/usr/local/bin/aws_completer' awslocalFor other shells:
Follow the official AWS CLI guide for your specific shell and ensure you register the completion for awslocal as well.