gcp-networking

Design and implement GCP network infrastructure.

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-networking" with this command: npx skills add bagelhole/devops-security-agent-skills/bagelhole-devops-security-agent-skills-gcp-networking

GCP Networking

Design and implement GCP network infrastructure.

Create VPC

gcloud compute networks create my-vpc --subnet-mode=custom

gcloud compute networks subnets create my-subnet
--network=my-vpc
--region=us-central1
--range=10.0.0.0/24

Firewall Rules

gcloud compute firewall-rules create allow-http
--network=my-vpc
--allow=tcp:80,tcp:443
--source-ranges=0.0.0.0/0
--target-tags=http-server

gcloud compute firewall-rules create allow-internal
--network=my-vpc
--allow=tcp,udp,icmp
--source-ranges=10.0.0.0/8

Cloud NAT

gcloud compute routers create my-router
--network=my-vpc
--region=us-central1

gcloud compute routers nats create my-nat
--router=my-router
--region=us-central1
--nat-all-subnet-ip-ranges
--auto-allocate-nat-external-ips

Best Practices

  • Use Shared VPC for multi-project

  • Implement Cloud Armor for DDoS

  • Use Private Google Access

  • Enable VPC Flow Logs

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

windows-server

No summary provided by upstream source.

Repository SourceNeeds Review