בדף הזה מוסבר איך לאבטח מכונה של App Engine באמצעות שרת proxy לאימות זהויות (IAP).
לפני שמתחילים
כדי להפעיל את IAP ב-App Engine, צריך:
- פרויקט במסוף עם חיוב מופעל. Google Cloud
אם עדיין לא הגדרתם את מופע App Engine, תוכלו לעיין במדריך המלא בנושא פריסת App Engine.
מערכת IAP משתמשת בלקוח OAuth שמנוהל על ידי Google כדי לאמת את המשתמשים. רק משתמשים בארגון יכולים לגשת לאפליקציה שמופעלת בה רכישה מתוך האפליקציה. אם רוצים לאפשר גישה למשתמשים מחוץ לארגון, אפשר לעיין במאמר בנושא הפעלת IAP לאפליקציות חיצוניות.
הפעלת IAP
המסוף
לקוח ה-OAuth שמנוהל על ידי Google לא זמין כשמפעילים את IAP באמצעות Google Cloud המסוף.
If you haven't configured your project's OAuth consent screen, you'll be prompted to do so. To configure your OAuth consent screen, see Setting up your OAuth consent screen.
Setting up IAP access
-
Go to the
Identity-Aware Proxy page.
Go to the Identity-Aware Proxy page - Select the project you want to secure with IAP.
- Select the checkbox next to the resource you want to grant access to.
- On the right side panel, click Add principal.
-
In the Add principals dialog that appears, enter the email addresses of groups or
individuals who should have the IAP-secured Web App User role for the project.
The following kinds of principals can have this role:
- Google Account: user@gmail.com
- Google Group: admins@googlegroups.com
- Service account: server@example.gserviceaccount.com
- Google Workspace domain: example.com
Make sure to add a Google Account that you have access to.
- Select Cloud IAP > IAP-secured Web App User from the Roles drop-down list.
- Click Save.
Turning on IAP
-
On the Identity-Aware Proxy page, under Applications,
find the application you want to restrict
access to. To turn on IAP for a resource,
-
In the Turn on IAP window that appears, click Turn On to
confirm that you want IAP to secure your resource. After you turn on
IAP, it requires login credentials for all connections to your load balancer.
Only principals with the IAP-Secured Web App User (
roles/iap.httpsResourceAccessor) role on the project will be given access.
gcloud
לפני שמגדירים את הפרויקט ואת הרכישות מתוך האפליקציה, צריך לוודא שיש לכם גרסה עדכנית של ה-CLI של gcloud. הוראות להתקנת ה-CLI של gcloud מופיעות במאמר התקנת gcloud CLI.
-
כדי לבצע אימות, משתמשים ב-CLI של Google Cloud ומריצים את הפקודה הבאה.
gcloud auth login - לוחצים על כתובת ה-URL שמופיעה ונכנסים לחשבון.
- אחרי הכניסה לחשבון, מעתיקים את קוד האימות שמופיע ומדביקים אותו בשורת הפקודה.
-
מריצים את הפקודה הבאה כדי לציין את הפרויקט שמכיל את האפליקציות שרוצים להגן עליהן באמצעות IAP.
gcloud config set project PROJECT_ID -
כדי להפעיל את IAP, מריצים את הפקודה הבאה.
gcloud iap web enable --resource-type=app-engine --versions=version -
מוסיפים לפרויקט את הגורמים הראשיים שצריכה להיות להם הרשאה של משתמש באפליקציית אינטרנט מאובטחת באמצעות IAP.
gcloud projects add-iam-policy-binding PROJECT_ID \ --member=PRINCIPAL_IDENTIFIER \ --role=roles/iap.httpsResourceAccessor- מחליפים את PROJECT_ID במזהה הפרויקט.
- מחליפים את PRINCIPAL_IDENTIFIER בחשבונות הראשיים הנדרשים. זה יכול להיות סוג של דומיין, קבוצה, חשבון שירות או משתמש. לדוגמה,
user:myemail@example.com.
אחרי שמפעילים את IAP, אפשר להשתמש ב-CLI של gcloud כדי לשנות את מדיניות הגישה של IAP באמצעות תפקיד ה-IAM roles/iap.httpsResourceAccessor. מידע נוסף על ניהול תפקידים והרשאות
API
Run the following command to prepare a
settings.jsonfile.cat << EOF > settings.json { "iap": { "enabled":true } } EOFRun the following command to enable IAP.
curl -X PATCH \ -H "Authorization: Bearer $(gcloud auth print-access-token)" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -d @settings.json \ "https://appengine.googleapis.com/v1/apps/PROJECT_ID?updateMask=iap"
After you enable IAP, you can use the Google Cloud CLI to modify the
IAP access policy using the IAM role
roles/iap.httpsResourceAccessor. Learn more about
managing roles and permissions.
בדיקת אימות משתמשים
אחרי שהתפקיד מוקצה, חשבונות המשתמש יכולים לגשת לאפליקציה אחרי אימות באמצעות IAP. ניגשים לכתובת ה-URL של האפליקציה מחשבון Google שקיבל את תפקיד המשתמש של אפליקציית אינטרנט באבטחת IAP (
roles/iap.httpsResourceAccessor) עם IAP.משתמשים בחלון פרטי ב-Chrome כדי לגשת לאפליקציה ונכנסים לחשבון כשמוצגת בקשה. משתמשים שקיבלו את התפקיד 'משתמש באפליקציית אינטרנט מאובטחת באמצעות IAP' ועברו אימות בהצלחה יכולים לגשת לאפליקציה. משתמשים שלא קיבלו את התפקיד הנדרש או שלא עברו אימות לא יכולים לגשת לאפליקציה.