명령줄에서 GCP 프로젝트 만들기

환경


  • MacOS X 10.14.5 (Mojave)
  • Homebrew 2.2.5
  • Google Cloud SDK 281.0.0

  • GCP 계정 등록



    【이미지로 설명】 Google Cloud Platform (GCP) 무료 평가판으로 계정 등록

    Google Cloud SDK 설치



    Google Cloud SDK 설치 ~ 초기화

    우선 SDK 인증



    로그인하지 않은 경우
    $ gcloud auth login
    

    다른 계정에 로그인한 경우 대상 계정으로 전환한 후 로그인
    $ gcloud config set account アカウントID
    $ gcloud auth login
    

    다음 명령으로 로그인한 계정을 확인할 수 있습니다.
    $ gcloud config list account
    

    프로젝트 만들기


    $ gcloud projects create プロジェクトID --name プロジェクト名
    

    프로젝트 전환



    만든 프로젝트를 활성화합니다.
    $ gcloud config set project プロジェクトID
    

    설정 확인


    $ gcloud config list
    
    # [core]
    # account = [email protected]
    # project = プロジェクトID
    

    결제 계정 설정



    여기에서 설정


    이하의 팝업이 나오지 않으면 청구처 계정 설정이 끝났으므로 건너 뛰고 OK입니다.




    결제 계정이 설정되지 않았거나 무료 평가판이 끝나면 나중에 이러한 오류가 발생할 수 있습니다.
    AccessDeniedException: 403 The project to be billed is associated with an absent billing account.
    

    리전/존 설정



    위와 같이 리전과 존이 설정되어 있지 않으면 다음과 같이 설정.
    설정값은 임의입니다.

    지역 설정


    $ gcloud config set compute/region us-central1
    

    영역 설정


    $ gcloud config set compute/zone us-central1-a
    

    설정 확인


    $ gcloud config list
    
    # [compute]
    # region = us-central1
    # zone = us-central1-a
    # [core]
    # account = [email protected]
    # disable_usage_reporting = False
    # project = project-id
    

    좋은 웹페이지 즐겨찾기