Browse Source

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

HoJeong Im 5 months ago
parent
commit
2b210c5ff7
2 changed files with 48 additions and 0 deletions
  1. 24 0
      pages.ko/common/aws-sso.md
  2. 24 0
      pages.ko/common/bind.md

+ 24 - 0
pages.ko/common/aws-sso.md

@@ -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 - 0
pages.ko/common/bind.md

@@ -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`