Skip to content

Commit

Permalink
chore(deps): update terraform (minor) (#216)
Browse files Browse the repository at this point in the history
* 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
renovate[bot] and esacteksab authored Jan 8, 2025
1 parent 13531d8 commit 77d4e84
Show file tree
Hide file tree
Showing 13 changed files with 443 additions and 286 deletions.
21 changes: 17 additions & 4 deletions .envrc
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
58 changes: 29 additions & 29 deletions orgname-id/admin-global/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

98 changes: 67 additions & 31 deletions orgname-infra/admin-global/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 17 additions & 5 deletions orgname-org-root/.envrc
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
58 changes: 29 additions & 29 deletions orgname-org-root/admin-global/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 17 additions & 5 deletions orgname-prod/.envrc
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
Loading

0 comments on commit 77d4e84

Please sign in to comment.