gcp-compute

Deploy and manage Compute Engine instances.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "gcp-compute" with this command: npx skills add bagelhole/devops-security-agent-skills/bagelhole-devops-security-agent-skills-gcp-compute

GCP Compute Engine

Deploy and manage Compute Engine instances.

Create Instance

gcloud compute instances create web-server
--machine-type=e2-medium
--zone=us-central1-a
--image-family=debian-11
--image-project=debian-cloud
--boot-disk-size=20GB
--tags=http-server

Create from instance template

gcloud compute instance-templates create web-template
--machine-type=e2-medium
--image-family=debian-11
--image-project=debian-cloud

gcloud compute instance-groups managed create web-group
--template=web-template
--size=3
--zone=us-central1-a

Best Practices

  • Use managed instance groups

  • Implement preemptible VMs for cost savings

  • Use custom images for consistency

  • Enable shielded VMs

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Security

linux-administration

No summary provided by upstream source.

Repository SourceNeeds Review
Security

sops-encryption

No summary provided by upstream source.

Repository SourceNeeds Review
Security

linux-hardening

No summary provided by upstream source.

Repository SourceNeeds Review
Security

vpn-setup

No summary provided by upstream source.

Repository SourceNeeds Review