CtrlK
BlogDocsLog inGet started
Tessl Logo

gcp-cloud

Google Cloud Platform infrastructure patterns and best practices. Use when designing or implementing GCP solutions including Compute Engine, Cloud Functions, Cloud Storage, and BigQuery.

73

Quality

71%

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SecuritybySnyk

Passed

No known issues

Optimize this skill with Tessl

npx tessl skill review --optimize ./plugins/devops-data/skills/gcp-cloud/SKILL.md
SKILL.md
Quality
Evals
Security

GCP Cloud Skill

This skill provides GCP architecture patterns and best practices.

Core Services

ServiceUse Case
Compute EngineVirtual machines
Cloud FunctionsServerless functions
Cloud RunContainers serverless
Cloud StorageObject storage
Cloud SQLManaged databases
BigQueryData warehouse
GKEKubernetes

Terraform Patterns

# GKE cluster
resource "google_container_cluster" "primary" {
  name     = "my-cluster"
  location = "us-central1"

  remove_default_node_pool = true
  initial_node_count       = 1

  workload_identity_config {
    workload_pool = "${var.project_id}.svc.id.goog"
  }
}

Security Best Practices

  • Use Workload Identity (not service account keys)
  • Enable VPC Service Controls
  • Use Cloud IAM for access management
  • Enable Cloud Audit Logs
  • Use Customer-Managed Encryption Keys
  • Enable Binary Authorization for GKE

BigQuery Patterns

-- Partitioned table for cost optimization
CREATE TABLE mydataset.events
PARTITION BY DATE(event_time)
CLUSTER BY user_id
AS SELECT * FROM staging.events;

Cost Optimization

  • Use Committed Use Discounts
  • Use Preemptible VMs for batch
  • Enable autoscaling
  • Use BigQuery slot reservations
  • Archive to Coldline/Archive storage
Repository
jpoutrin/product-forge
Last updated
Created

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.