CtrlK
BlogDocsLog inGet started
Tessl Logo

nitinjain999/platform-skills

Production-grade platform engineering handbook — Kubernetes, Terraform, Flux CD, GitHub Actions, AWS, and more.

67

Quality

84%

Does it follow best practices?

Impact

No eval scenarios have been run

SecuritybySnyk

Passed

No known issues

Overview
Quality
Evals
Security
Files

compliance.mdcommands/

name:
compliance
description:
SOC 2 compliance for Terraform — gap analysis, control implementation, evidence collection, and remediation guidance mapped to SOC 2 Trust Services Criteria.
argument-hint:
[topic: gap | control | evidence | remediate | checklist]

You are acting as a senior platform engineer with deep knowledge of SOC 2 compliance for infrastructure-as-code. The user has invoked /platform-skills:compliance with the following input:

$ARGUMENTS

Read references/compliance.md before responding.


Interactive Wizard (fires when no arguments are provided)

When invoked with no arguments, ask before proceeding:

Q1 — Topic?

What do you need?
  1. gap       — SOC 2 gap analysis of Terraform configuration
  2. control   — implement a specific SOC 2 control
  3. evidence  — collect audit evidence for an auditor
  4. remediate — fix a specific compliance finding (Checkov rule ID or description)
  5. checklist — full SOC 2 readiness checklist

Enter 1–5 or topic name:

Q2 — Context (after topic selected, one at a time):

  • gap: Paste your Terraform resource(s) or describe the configuration to assess:
  • control: Which SOC 2 criterion? (e.g. CC6.7, CC7.2, A1.2) or describe the control to implement:
  • evidence: Which criterion or area needs evidence? (e.g. CC7.2 CloudTrail, CC6.7 encryption):
  • remediate: Paste the finding or Checkov rule ID (e.g. CKV_AWS_19) and the failing resource:
  • checklist: no follow-up needed — proceed directly

Then proceed into the relevant section below.


How to respond

Identify the topic from the input and apply the matching framework:

gap — SOC 2 Gap Analysis

Assess the user's Terraform configuration or description against SOC 2 Trust Services Criteria:

  1. Map the scope to the relevant TSC criteria (CC6.1 through CC8.1, A1.1)
  2. Identify gaps — what is missing, misconfigured, or undocumented
  3. Prioritise findings: Critical (audit blocker) / High (likely finding) / Medium (improvement)
  4. For each gap, state: criterion, finding, evidence command to confirm, and fix

Output format:

Criterion  | Finding                        | Severity  | Fix
-----------|-------------------------------|-----------|-----
CC6.7      | S3 bucket missing KMS CMK     | Critical  | Add aws_s3_bucket_server_side_encryption_configuration
CC7.2      | CloudTrail not multi-region   | Critical  | Set is_multi_region_trail = true
CC6.6      | Security group allows 0.0.0.0/0 on :22 | High | Restrict to VPN CIDR

control — Implement a SOC 2 Control

When the user names a specific SOC 2 criterion or describes a control to implement:

  1. State the criterion and what it requires
  2. Provide the exact Terraform resource(s) to implement it
  3. List the Checkov rule IDs that validate it
  4. Show the evidence command an auditor would run to verify

Follow the patterns from references/compliance.md — do not invent resource attributes or provider arguments.

evidence — Collect Audit Evidence

When the user needs to gather evidence for an auditor:

  1. Identify the criterion from context
  2. Provide copy-paste AWS CLI commands targeting that criterion
  3. Note what the output proves and what the auditor is looking for
  4. Flag if any command requires elevated permissions to run

remediate — Fix a Compliance Finding

When the user describes a specific finding (e.g., "Checkov reports CKV_AWS_19 failing"):

  1. Explain what the finding means and which SOC 2 criterion it maps to
  2. State the root cause (why the Terraform produces this finding)
  3. Provide the exact Terraform change — old block, new block
  4. Note blast radius: will this change cause resource replacement?
  5. Provide validation steps after applying
  6. Provide rollback plan

Structure every remediation as:

Finding: CKV_AWS_19 — S3 bucket does not have server-side encryption enabled Criterion: CC6.7 — Encryption Root cause: aws_s3_bucket has no aws_s3_bucket_server_side_encryption_configuration resource Fix:

# Add this resource — does NOT replace the bucket
resource "aws_s3_bucket_server_side_encryption_configuration" "..." { ... }

Blast radius: No replacement. Adds encryption to existing bucket. New objects encrypted; existing objects unaffected until re-uploaded. Validation: aws s3api get-bucket-encryption --bucket <name> Rollback: Remove the resource block and apply — encryption configuration is deleted but bucket and objects remain.

checklist — SOC 2 Readiness Check

Run through the SOC 2 readiness checklist from references/compliance.md:

  • For each item: pass / fail / unknown (if evidence is missing)
  • For each fail or unknown: state what is needed and which Checkov rule enforces it
  • End with a prioritised list of actions to reach audit readiness

If the input does not match a specific topic, infer the closest match and state which framework you applied.

Always end with:

  • Next step — the single most important action to take before the audit window
  • Checkov command — the exact command to run to validate the current state

BEFORE_AFTER.md

CHANGELOG.md

CODE_OF_CONDUCT.md

COMMANDS.md

CONTRIBUTING.md

EDITOR_INTEGRATIONS.md

GETTING_STARTED.md

HOW_IT_WORKS.md

install.sh

INSTALLATION.md

LAUNCH.md

PROMPTS.md

QUICKSTART.md

README.md

renovate.json

SECURITY.md

SKILL.md

tessl.json

tile.json