Memeriksa teks sensitif menggunakan Node.js

Pelajari cara memindai string contoh untuk mengetahui informasi sensitif menggunakan Cloud Data Loss Prevention API Perlindungan Data Sensitif, Google Cloud CLI, dan Node.js.


Jika ingin mengikuti panduan langkah demi langkah untuk tugas ini langsung di Konsol Google Cloud, klik Pandu saya:

Pandu saya


Sebelum memulai

  1. Sign in to your Google Account.

    If you don't already have one, sign up for a new account.

  2. Install the Google Cloud CLI.
  3. Configure the gcloud CLI to use your federated identity.

    For more information, see Browser-based sign-in with the gcloud CLI.

  4. To initialize the gcloud CLI, run the following command:

    gcloud init
  5. Buat atau pilih project Google Cloud.

    • Membuat project Google Cloud:

      gcloud projects create PROJECT_ID

      Ganti PROJECT_ID dengan nama untuk project Google Cloud yang Anda buat.

    • Pilih project Google Cloud yang Anda buat:

      gcloud config set project PROJECT_ID

      Ganti PROJECT_ID dengan nama project Google Cloud Anda.

  6. Make sure that billing is enabled for your Google Cloud project.

  7. Aktifkan API DLP:

    gcloud services enable dlp.googleapis.com
  8. Buat kredensial autentikasi lokal untuk Akun Google Anda:

    gcloud auth application-default login
  9. Grant roles to your user account. Run the following command once for each of the following IAM roles: roles/dlp.user

    gcloud projects add-iam-policy-binding PROJECT_ID --member="user:USER_IDENTIFIER" --role=ROLE
  10. Install the Google Cloud CLI.
  11. Configure the gcloud CLI to use your federated identity.

    For more information, see Browser-based sign-in with the gcloud CLI.

  12. To initialize the gcloud CLI, run the following command:

    gcloud init
  13. Buat atau pilih project Google Cloud.

    • Membuat project Google Cloud:

      gcloud projects create PROJECT_ID

      Ganti PROJECT_ID dengan nama untuk project Google Cloud yang Anda buat.

    • Pilih project Google Cloud yang Anda buat:

      gcloud config set project PROJECT_ID

      Ganti PROJECT_ID dengan nama project Google Cloud Anda.

  14. Make sure that billing is enabled for your Google Cloud project.

  15. Aktifkan API DLP:

    gcloud services enable dlp.googleapis.com
  16. Buat kredensial autentikasi lokal untuk Akun Google Anda:

    gcloud auth application-default login
  17. Grant roles to your user account. Run the following command once for each of the following IAM roles: roles/dlp.user

    gcloud projects add-iam-policy-binding PROJECT_ID --member="user:USER_IDENTIFIER" --role=ROLE
  18. Instal Node.js dan NPM.

Menyiapkan aplikasi CLI Perlindungan Data Sensitif

Untuk menyiapkan aplikasi CLI Perlindungan Data Sensitif menggunakan Node.js, lakukan hal berikut:

  1. Clone library klien DLP Node.js:

     git clone https://github.com/GoogleCloudPlatform/nodejs-docs-samples
    
  2. Buka direktori dlp.

     cd nodejs-docs-samples/dlp
    
  3. Instal dependensi aplikasi:

     npm install
    

Memeriksa string untuk menemukan informasi sensitif

Untuk memindai teks contoh menggunakan DLP API dan skrip Node.js inspectString, jalankan perintah berikut:

  node inspectString.js PROJECT_ID "My email address is joe@example.com."

Outputnya mirip dengan hal berikut ini:

  Findings:
      Info type: EMAIL_ADDRESS
      Likelihood: LIKELY

Pembersihan

Agar tidak menimbulkan biaya pada akun Google Cloud Anda untuk resource yang digunakan pada halaman ini, hapus project Google Cloud yang berisi resource tersebut.

Menghapus project

Jika Anda membuat project baru untuk panduan memulai ini, cara termudah untuk mencegah biaya tambahan adalah dengan menghapus project tersebut.

    Menghapus project Google Cloud:

    gcloud projects delete PROJECT_ID

Mencabut kredensial

  1. Opsional: Cabut kredensial autentikasi yang Anda buat, dan hapus file kredensial lokal.

    gcloud auth application-default revoke
  2. Opsional: Cabut kredensial dari gcloud CLI.

    gcloud auth revoke

Langkah selanjutnya