0
0
GCPcloud~30 mins

Security Command Center overview in GCP - Mini Project: Build & Apply

Choose your learning style9 modes available
Security Command Center overview
📖 Scenario: You are a cloud security analyst at a company using Google Cloud Platform (GCP). Your manager wants you to set up a basic Security Command Center (SCC) configuration to monitor security risks and vulnerabilities across your cloud projects.
🎯 Goal: Build a simple Security Command Center setup by creating a resource to hold findings, configuring a notification channel, and enabling a security source to detect threats.
📋 What You'll Learn
Create a Security Command Center organization settings resource
Add a notification configuration with a Pub/Sub topic
Enable a security source for vulnerability scanning
Verify the final SCC configuration includes organization settings, notification config, and source
💡 Why This Matters
🌍 Real World
Security Command Center helps organizations monitor and manage security risks across their Google Cloud resources in one place.
💼 Career
Cloud security analysts and engineers use SCC to detect vulnerabilities, receive alerts, and respond to threats quickly.
Progress0 / 4 steps
1
Create Security Command Center organization settings
Create a resource called organizationSettings with the exact organization ID 123456789 and set the enableAssetDiscovery field to true.
GCP
Need a hint?

Use a dictionary with keys name and enableAssetDiscovery.

2
Add a notification configuration
Create a variable called notificationConfig with the name organizations/123456789/notificationConfigs/my-notification and set the pubsubTopic to projects/my-project/topics/security-alerts.
GCP
Need a hint?

Use a dictionary with keys name and pubsubTopic.

3
Enable a security source for vulnerability scanning
Create a variable called source with the name organizations/123456789/sources/vulnerability-scanner and set the displayName to Vulnerability Scanner.
GCP
Need a hint?

Use a dictionary with keys name and displayName.

4
Complete the Security Command Center configuration
Combine the variables organizationSettings, notificationConfig, and source into a dictionary called sccConfig with keys organizationSettings, notificationConfigs (a list containing notificationConfig), and sources (a list containing source).
GCP
Need a hint?

Create a dictionary with keys and assign the existing variables accordingly.