-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update terraform (minor) (#216)
* chore(deps): update terraform * feat: update envrc files --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Barry Morrison <[email protected]>
- Loading branch information
1 parent
13531d8
commit 77d4e84
Showing
13 changed files
with
443 additions
and
286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
# Have aws-vault use the login keychain for better timeout behavior | ||
export AWS_VAULT_KEYCHAIN_NAME=login | ||
# shellcheck disable=SC2148 | ||
AWS_PROFILE=$(basename "$(expand_path .)") | ||
export AWS_PROFILE | ||
|
||
# Have chamber use the default SSM alias | ||
export CHAMBER_KMS_KEY_ALIAS=aws/ssm | ||
# Let's be kind to ourselves and not time out every 60m | ||
export AWS_ASSUME_ROLE_TTL=8h | ||
|
||
############################################## | ||
# Load Local Overrides and Check Environment # | ||
############################################## | ||
|
||
# Load a local overrides file. Any changes you want to make for your local | ||
# environment should live in that file. | ||
|
||
if [ -e .envrc.local ] | ||
then | ||
source_env .envrc.local | ||
fi |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
source_up | ||
PATH_add ../bin | ||
# shellcheck disable=SC2148 | ||
AWS_PROFILE=$(basename "$(expand_path .)") | ||
export AWS_PROFILE | ||
|
||
# Setup profile for command line tools. This will allow vars to be | ||
# detected and used by the app automatically. | ||
export AWS_PROFILE=$(basename $(expand_path .)) | ||
# Let's be kind to ourselves and not time out every 60m | ||
export AWS_ASSUME_ROLE_TTL=8h | ||
|
||
############################################## | ||
# Load Local Overrides and Check Environment # | ||
############################################## | ||
|
||
# Load a local overrides file. Any changes you want to make for your local | ||
# environment should live in that file. | ||
|
||
if [ -e .envrc.local ] | ||
then | ||
source_env .envrc.local | ||
fi |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
source_up | ||
PATH_add ../bin | ||
# shellcheck disable=SC2148 | ||
AWS_PROFILE=$(basename "$(expand_path .)") | ||
export AWS_PROFILE | ||
|
||
# Setup profile for command line tools. This will allow vars to be | ||
# detected and used by the app automatically. | ||
export AWS_PROFILE=$(basename $(expand_path .)) | ||
# Let's be kind to ourselves and not time out every 60m | ||
export AWS_ASSUME_ROLE_TTL=8h | ||
|
||
############################################## | ||
# Load Local Overrides and Check Environment # | ||
############################################## | ||
|
||
# Load a local overrides file. Any changes you want to make for your local | ||
# environment should live in that file. | ||
|
||
if [ -e .envrc.local ] | ||
then | ||
source_env .envrc.local | ||
fi |
Oops, something went wrong.