
Security News
Security Community Slams MIT-linked Report Claiming AI Powers 80% of Ransomware
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.
@backstage/plugin-catalog-backend-module-gcp
Advanced tools
A Backstage catalog backend module that helps integrate towards GCP
This is an extension module to the plugin-catalog-backend plugin, containing catalog processors and providers to ingest GCP resources as Resource kind entities.
The GKE Entity Provider supports two authentication methods:
GOOGLE_APPLICATION_CREDENTIALS environment variable pointing to a service account key fileRegister the plugin in `catalog.ts``
import { GkeEntityProvider } from '@backstage/plugin-catalog-backend-module-gcp';
...
builder.addEntityProvider(
  GkeEntityProvider.fromConfig({
    logger: env.logger,
    scheduler: env.scheduler,
    config: env.config
  })
);
Update app-config.yaml as follows:
catalog:
  providers:
    gcp:
      gke:
        parents:
          # consult https://cloud.google.com/kubernetes-engine/docs/ for valid values
          # list all clusters in the project
          - 'projects/some-project/locations/-'
          # list all clusters in the region, in the project
          - 'projects/some-other-project/locations/some-region'
        schedule: # optional; same options as in TaskScheduleDefinition
          # supports cron, ISO duration, "human duration" as used in code
          frequency: { minutes: 30 }
          # supports ISO duration, "human duration" as used in code
          timeout: { minutes: 3 }
        # Optional: Google Service Account credentials for authentication
        # If not provided, falls back to Application Default Credentials or GOOGLE_APPLICATION_CREDENTIALS
        googleServiceAccountCredentials: |
          {
            "type": "service_account",
            "project_id": "your-project-id",
            "private_key_id": "key-id",
            "private_key": "-----BEGIN PRIVATE KEY-----\n...\n-----END PRIVATE KEY-----\n",
            "client_email": "your-service-account@your-project.iam.gserviceaccount.com",
            "client_id": "client-id",
            "auth_uri": "https://accounts.google.com/o/oauth2/auth",
            "token_uri": "https://oauth2.googleapis.com/token",
            "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
            "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/..."
          }
        # Optional: Authentication provider for Kubernetes clusters
        # Defaults to 'google' if not specified
        # Common values: 'google', 'googleServiceAccount'
        authProvider: googleServiceAccount
        # Optional: Owner of the discovered GKE clusters
        # Defaults to 'unknown' if not specified
        owner: platform-team
FAQs
A Backstage catalog backend module that helps integrate towards GCP
The npm package @backstage/plugin-catalog-backend-module-gcp receives a total of 1,211 weekly downloads. As such, @backstage/plugin-catalog-backend-module-gcp popularity was classified as popular.
We found that @backstage/plugin-catalog-backend-module-gcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.