Cloud de Confiance by S3NS 프로젝트에서 Global Front End Enterprise 사용 설정 및 관리

프로젝트에서 Global Front End Enterprise를 사용 설정하면 Cloud de Confiance by S3NS 전역 외부 애플리케이션 부하 분산기, Cloud CDN, Google Cloud Armor (Enterprise 기능), Service Extensions가 단일 Global Front End Enterprise 가격 책정 모델로 번들링됩니다.

프로젝트에서 Global Front End Enterprise 사용 설정 상태 보기

프로젝트에서 Global Front End Enterprise가 사용 설정되어 있는지 또는 프로젝트에서 표준 개별 가격 책정을 사용하고 있는지 확인할 수 있습니다.

콘솔

  1. Cloud de Confiance 콘솔에서 Global Front End 페이지로 이동합니다.

    Global Front End로 이동

  2. 프로젝트 선택기 메뉴에서 프로젝트를 선택합니다.

  3. Global Front End 페이지에서 강조 표시된 활성 등급을 찾아 Global Front End Enterprise의 사용 설정 상태를 확인합니다.

REST

Compute Engine 알파 API를 사용 설정한 후 GET 요청을 보내 Global Front End Enterprise의 사용 설정 상태를 가져옵니다.

curl -H "Authorization: Bearer $(gcloud auth print-access-token)" \
     "https://compute.googleapis.com/compute/alpha/projects/PROJECT_ID/global/globalFrontendSettings"

PROJECT_ID를 Global Front End Enterprise 사용 설정 세부정보를 보려는 프로젝트의 ID로 바꿉니다.

JSON 응답에서 bundleType 필드 값을 확인합니다.

  • GLOBAL_FRONT_END: 프로젝트에서 Global Front End Enterprise가 사용 설정되어 있음을 나타냅니다.
  • INDIVIDUAL: 프로젝트에서 Global Front End Enterprise가 사용 설정되어 있지 않음을 나타냅니다.

프로젝트에서 Global Front End Enterprise 사용 설정

프로젝트에서 Global Front End Enterprise를 사용 설정하려면 계정 담당자Cloud de Confiance 에게 문의하여 프로젝트를 허용 목록에 추가하세요.

프로젝트에서 Global Front End Enterprise를 사용 설정하기 전에 워크로드에서 주로 전역 외부 애플리케이션 부하 분산기를 사용하는지 확인하세요. 리전 부하 분산기, 패스 스루 부하 분산기, 표준 등급 트래픽은 Global Front End Enterprise 가격 책정에서 제외되며 개별적으로 청구됩니다.

REST

프로젝트가 허용 목록에 추가되고 Compute Engine 알파 API를 사용 설정한 후 다음 단계를 따르세요.

  1. (선택사항) Global Front End Enterprise 의 사용 설정 상태를 봅니다. 프로젝트에서 Global Front End Enterprise가 사용 설정되어 있지 않으면 다음 단계로 진행합니다.
  2. PATCH 요청을 보내 프로젝트에서 Global Front End Enterprise를 사용 설정합니다.

    curl --request PATCH \
    -H "Authorization: Bearer $(gcloud auth print-access-token)" \
    -H "Content-Type: application/json" \
    --data '{
      "bundleType": "GLOBAL_FRONT_END"
    }' \
    "https://compute.googleapis.com/compute/alpha/projects/PROJECT_ID/global/globalFrontendSettings"
    

    PROJECT_ID를 Global Front End Enterprise를 사용 설정하려는 프로젝트의 ID로 바꿉니다.

  3. 잠시 기다린 후 Global Front End Enterprise 의 사용 설정 상태를 확인합니다.

프로젝트에서 Global Front End Enterprise 사용 중지

Global Front End Enterprise를 사용 중지하고 프로젝트를 개별 결제로 되돌릴 수 있습니다.

Global Front End Enterprise를 사용 중지하면 Cloud Armor 프로젝트 수준 등급에 따라 활성 보호가 결정됩니다. Cloud de Confiance 프로젝트가 Global Front End Enterprise를 사용 설정하기 전에 사용한 Cloud Armor 등급으로 자동으로 복원되지 않습니다. 보안 정책 저하 또는 예기치 않은 결제 변경을 방지하려면 Cloud Armor 결제 등급 (Cloud Armor Standard 또는 Cloud Armor Enterprise 종량제)을 수동으로 지정해야 합니다. 자세한 내용은 Cloud Armor Enterprise 다운그레이드를 참조하세요.

콘솔

  1. Cloud de Confiance 콘솔에서 Global Front End 페이지로 이동합니다.

    Global Front End로 이동

  2. 프로젝트 선택기 메뉴에서 프로젝트를 선택합니다.

  3. À la carte 열에서 사용 설정 을 클릭합니다.

  4. 확인 대화상자에서 확인 을 클릭합니다.

REST

아직 사용 설정되지 않은 경우 Compute Engine alpha API를 사용 설정한 후 PATCH 요청을 보내 bundleType 필드를 INDIVIDUAL로 설정합니다.

curl --request PATCH \
     -H "Authorization: Bearer $(gcloud auth print-access-token)" \
     -H "Content-Type: application/json" \
     --data '{
       "bundleType": "INDIVIDUAL"
     }' \
     "https://compute.googleapis.com/compute/alpha/projects/PROJECT_ID/global/globalFrontendSettings"

PROJECT_ID를 Global Front End Enterprise를 사용 중지하려는 프로젝트의 ID로 바꿉니다.

잠시 기다린 후 Global Front End Enterprise 의 사용 설정 상태를 확인합니다.

다음 단계