mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2026-01-11 21:36:00 +01:00
feat(aws): add tracking of AWS config
This commit is contained in:
parent
0626cf69ea
commit
370db423b3
3 changed files with 14 additions and 1 deletions
|
|
@ -20,3 +20,11 @@ export XDG_BIN_HOME="$HOME/.local/bin"
|
|||
export XDG_DATA_HOME="$HOME/.local/share"
|
||||
export XDG_CACHE_HOME="$HOME/.cache"
|
||||
export XDG_CONFIG_HOME="$HOME/.config"
|
||||
|
||||
# Polyfill for AWS CLI XDG (sigh...)
|
||||
# https://github.com/aws/aws-cli/issues/9031#issuecomment-2448119520
|
||||
export AWS_CONFIG_FILE="$XDG_CONFIG_HOME/aws/config"
|
||||
export AWS_CLI_HISTORY_FILE="$XDG_DATA_HOME/aws/history"
|
||||
export AWS_CREDENTIALS_FILE="$XDG_DATA_HOME/aws/credentials"
|
||||
export AWS_WEB_IDENTITY_TOKEN_FILE="$XDG_DATA_HOME/aws/token"
|
||||
export AWS_SHARED_CREDENTIALS_FILE="$XDG_DATA_HOME/aws/shared-credentials"
|
||||
|
|
|
|||
3
.config/aws/config
Normal file
3
.config/aws/config
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
[default]
|
||||
region = eu-north-1
|
||||
output = text
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -11,6 +11,8 @@
|
|||
!.ssh/config
|
||||
!.config/git/
|
||||
!.config/git/**
|
||||
!.config/aws/
|
||||
!.config/aws/config
|
||||
!.config/code-server/
|
||||
!.config/code-server/**
|
||||
!.bash_aliases
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue