We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As mentioned in #36, it would be nice to be able to change config parameters (for example, the region, or the aws profile) only for one command.
We could do that with, for example (git syntax)
awless -c "aws.profile=prod" -c "region=us-west-2" list instances
The text was updated successfully, but these errors were encountered:
Agreed on the flexibility it provides.
Although I see another syntax for official/long term keys like aws-profile and aws-region. More like:
awless list instances --aws-profile PROD awless list instances --aws-region us-west-2
awless list instances --aws-profile PROD
awless list instances --aws-region us-west-2
It will be easier to type and clearer and more searchable in your command history (CTRL+r)
I'd rather keep the other git like syntax ( ... -c "" ...) for less official and maybe more dynamic config/properties
... -c "" ...
Sorry, something went wrong.
Dynamically change AWS region/profile with global flags.
8345814
AWS_DEFAULT_REGION env variable now loaded. Better output of `awless config list`. Config setters now provide dialogs. Closes #73 and #55.
Fixed by 8345814. Available in 0.0.17.
No branches or pull requests
As mentioned in #36, it would be nice to be able to change config parameters (for example, the region, or the aws profile) only for one command.
We could do that with, for example (git syntax)
The text was updated successfully, but these errors were encountered: