Releases: fidelity/awsrun
Version 3.2.1
-
Add optional
pre_hook_with_contextmethod to theCommandbase class,
which takes a single parameter calledcontext. The value of that parameter
is provided by the caller ofAccountRunner.run. In the case of the awsrun
CLI commands, that context is an instance ofawsrun.cli.Context, which
provides command authors access to the account loader and session provider
plug-ins as well as the full list of accounts being processed. For example,
this would allow you to write a command that performs a VPC peering. While
processing the account from which the peering is initiated, you can now
obtain credentials for the other account to accept the request by using the
session provider. -
Update the license to Apache 2.0.
Version 3.1.0
-
Add URLAccountLoader plug-in which supports HTTP authentication (basic, digest, oauth2). This plug-in should be preferred over the existing JSONAccountLoader, YAMLAccountLoader, and CSVAccountLoader plug-ins, which will eventually be deprecated.
-
Add HTTP POST support to the SAML credential provider plug-in. Thanks to @RobertShan2000 for the contribution.