You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The value is still loaded to <some_key> although it is retrieved from a key ending <some_extension>.
A reserved key __ext is added to handle the separation between the extension and the rest. This is necessary for handling an extension for resource group-level secrets.
Example 1:
This extension can be a notion of production or staging environment.
handoff commands can take --extension (shorthand -x) option like:
# Local run
handoff run local -p <project_dir> -w <workspace_dir> --extension account_1
# Local run with remote stored secrets and project settings
handoff run -p <project_dir> -w <workspace_dir> --extension account_1
# Local container run test
handoff container run -p <project_dir> -w <workspace_dir> --extension account_1
# Run on cloud
handoff cloud run -p <project_dir> -w <workspace_dir> --extension account_1
With run local, handoff should search a subdirectory .secret/account_1 instead of the default directory .secret.
The text was updated successfully, but these errors were encountered:
Currently, a secret
<some_key>
is stored in the remote parameter store (AWS SystemsManager Parameter Store) in the following format:To make the project more reusable, the secrets keys can use an extension like this:
The value is still loaded to
<some_key>
although it is retrieved from a key ending<some_extension>
.A reserved key
__ext
is added to handle the separation between the extension and the rest. This is necessary for handling an extension for resource group-level secrets.Example 1:
This extension can be a notion of production or staging environment.
Example 2:
This extension can be used to give the same task definition execute with different nuances of contexts:
handoff commands can take
--extension
(shorthand-x
) option like:With
run local
, handoff should search a subdirectory.secret/account_1
instead of the default directory.secret
.The text was updated successfully, but these errors were encountered: