View a markdown version of this page

시작하기 - AWS 변환

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

시작하기

사전 조건

지속적인 현대화를 효과적으로 사용하려면 Git 버전 제어, 소스 코드 플랫폼(GitHub, GitLab 또는 Bitbucket)에 대한 지식, AWS IAM 권한에 대한 실무 지식, 명령줄 도구에 대한 경험을 기본적으로 이해해야 합니다.

지속적 현대화를 사용하기 전에 다음이 있는지 확인합니다.

  • AWS 설치된 CLI 변환:

    curl -fsSL https://transform-cli.awsstatic.com/install.sh | bash
  • Node.js 22 이상

  • 유효한 AWS 자격 증명(AWS_PROFILE 또는 환경 변수)

  • IAM 사용자 또는 역할에 AWSTransformCustomFullAccess 연결된 AWS 관리형 정책

빠른 시작

  1. 지속적 현대화 서버를 시작합니다.

    atx ct server &
  2. 소스 추가:

    atx ct source add --name name --provider provider --org org-or-group --token token

    여기서 name은 소스의 설명 식별자이고, provider는 플랫폼(github, bitbucket, 또는 local)이고gitlab, org-or-group은 조직 또는 그룹 이름이고, token은 인증 토큰입니다.

  3. 리포지토리 검색:

    atx ct discovery scan --source name
  4. 분석을 실행합니다.

    atx ct analysis run --type type --source name --wait
  5. 조사 결과 살펴보기:

    atx ct findings list --json
  6. 결과 수정:

    atx ct remediation create --ids id1,id2 --name "remediation-name"