cloud-security-configuration

aj-geddes/useful-ai-prompts · updated Apr 8, 2026

$npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill cloud-security-configuration
0 commentsdiscussion
summary

Cloud security requires comprehensive strategies spanning identity management, encryption, network controls, compliance, and threat detection. Implement defense-in-depth with multiple layers of protection and continuous monitoring.

skill.md

Cloud Security Configuration

Table of Contents

Overview

Cloud security requires comprehensive strategies spanning identity management, encryption, network controls, compliance, and threat detection. Implement defense-in-depth with multiple layers of protection and continuous monitoring.

When to Use

  • Protecting sensitive data in cloud
  • Compliance with regulations (GDPR, HIPAA, PCI-DSS)
  • Implementing zero-trust security
  • Securing multi-cloud environments
  • Threat detection and response
  • Identity and access management
  • Network isolation and segmentation
  • Encryption and key management

Quick Start

Minimal working example:

# Enable GuardDuty (threat detection)
aws guardduty create-detector \
  --enable \
  --finding-publishing-frequency FIFTEEN_MINUTES

# Enable CloudTrail (audit logging)
aws cloudtrail create-trail \
  --name organization-trail \
  --s3-bucket-name audit-bucket \
  --is-multi-region-trail

# Enable S3 bucket encryption by default
aws s3api put-bucket-encryption \
  --bucket my-bucket \
  --server-side-encryption-configuration '{
    "Rules": [{
      "ApplyServerSideEncryptionByDefault": {
        "SSEAlgorithm": "aws:kms",
        "KMSMasterKeyID": "arn:aws:kms:region:account:key/key-id"
      },
      "BucketKeyEnabled": true
    }]
  }'

# Enable VPC Flow Logs
// ... (see reference guides for full implementation)

Reference Guides

Detailed implementations in the references/ directory:

Guide Contents
AWS Security Configuration AWS Security Configuration
Terraform Security Configuration Terraform Security Configuration
Azure Security Configuration Azure Security Configuration
GCP Security Configuration GCP Security Configuration

Best Practices

✅ DO

  • Implement least privilege access
  • Enable MFA everywhere
  • Use service accounts for applications
  • Encrypt data at rest and in transit
  • Enable comprehensive logging
  • Implement network segmentation
  • Use secrets management
  • Enable threat detection
  • Regular security assessments
  • Keep systems patched

❌ DON'T

  • Use root/default credentials
  • Store secrets in code
  • Over-permissive security groups
  • Disable encryption
  • Ignore logs and monitoring
  • Share credentials
  • Skip compliance requirements
  • Trust unverified data sources

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.675 reviews
  • Aarav Nasser· Dec 28, 2024

    cloud-security-configuration has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Mei Lopez· Dec 24, 2024

    Registry listing for cloud-security-configuration matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Harper Patel· Dec 20, 2024

    cloud-security-configuration fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Nia Rahman· Dec 16, 2024

    We added cloud-security-configuration from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Charlotte Ndlovu· Dec 16, 2024

    Keeps context tight: cloud-security-configuration is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Dhruvi Jain· Dec 4, 2024

    Keeps context tight: cloud-security-configuration is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Oshnikdeep· Nov 23, 2024

    cloud-security-configuration has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Aarav Jackson· Nov 19, 2024

    Keeps context tight: cloud-security-configuration is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • William Bansal· Nov 15, 2024

    cloud-security-configuration fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Harper Khanna· Nov 11, 2024

    Registry listing for cloud-security-configuration matched our evaluation — installs cleanly and behaves as described in the markdown.

showing 1-10 of 75

1 / 8