aws-sso, bind: add Korean translation (#14137)

This commit is contained in:
HoJeong Im 2024-10-12 14:06:26 +09:00 committed by GitHub
parent 31d7b33517
commit 2b210c5ff7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,24 @@
# aws sso
> SSO(Single Sign-On) 자격 증명을 사용하여 AWS 리소스에 대한 액세스를 관리.
> 더 많은 정보: <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/sso/index.html>.
- SSO 세션을 시작하고 액세스 토큰을 새로 고침. `aws configure sso`를 사용한 설정이 필요:
`aws sso login`
- SSO 세션을 종료하고 캐시된 액세스 토큰을 지움:
`aws sso logout`
- 사용자가 액세스할 수 있는 모든 AWS 계정을 나열:
`aws sso list-accounts`
- 특정 AWS 계정에 대해 사용자가 액세스할 수 있는 모든 역할을 나열:
`aws sso list-account-roles --account-id {{계정}} --access-token {{토큰}}`
- 특정 계정에 대한 단기 자격 증명 검색:
`aws get-role-credentials --account-id {{계정}} --role-name {{역할}} --access-token {{토큰}}`

24
pages.ko/common/bind.md Normal file
View File

@ -0,0 +1,24 @@
# bind
> bash 단축키 및 변수를 관리하기 위한 bash 내장.
> 더 많은 정보: <https://www.gnu.org/software/bash/manual/bash.html#Bash-Builtins>.
- 모든 바인딩된 명령어와 해당 단축키를 나열:
`bind {{-p|-P}}`
- 단축키에 대한 명령어를 쿼리:
`bind -q {{명령어}}`
- 키 바인딩:
`bind -x '"{{키_시퀸스}}":{{명령어}}'`
- 사용자 정의 바인딩 나열:
`bind -X`
- 도움말 표시:
`help bind`