jpskill.com
🛠️ 開発・MCP コミュニティ 🟡 少し慣れが必要 👤 幅広いユーザー

🛠️ Devops Iac Engineer

devops-iac-engineer

TerraformやKubernetesを活用し、クラウド基盤のコード化、スケーラブルな設計、CI/CDパイプライン構築、セキュリティ重視のDevOps実践を支援するSkill。

⏱ ボイラープレート実装 半日 → 30分

📺 まず動画で見る(YouTube)

▶ 【衝撃】最強のAIエージェント「Claude Code」の最新機能・使い方・プログラミングをAIで効率化する超実践術を解説! ↗

※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。

📜 元の英語説明(参考)

Implements infrastructure as code using Terraform, Kubernetes, and cloud platforms. Designs scalable architectures, CI/CD pipelines, and observability solutions. Provides security-first DevOps practices and site reliability engineering guidance.

🇯🇵 日本人クリエイター向け解説

一言でいうと

TerraformやKubernetesを活用し、クラウド基盤のコード化、スケーラブルな設計、CI/CDパイプライン構築、セキュリティ重視のDevOps実践を支援するSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o devops-iac-engineer.zip https://jpskill.com/download/364.zip && unzip -o devops-iac-engineer.zip && rm devops-iac-engineer.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/364.zip -OutFile "$d\devops-iac-engineer.zip"; Expand-Archive "$d\devops-iac-engineer.zip" -DestinationPath $d -Force; ri "$d\devops-iac-engineer.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して devops-iac-engineer.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → devops-iac-engineer フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-17
取得日時
2026-05-17
同梱ファイル
3

💬 こう話しかけるだけ — サンプルプロンプト

  • devops-iac-engineer の使い方を教えて
  • devops-iac-engineer で何ができるか具体例で見せて
  • devops-iac-engineer を初めて使う人向けにステップを案内して

これをClaude Code に貼るだけで、このSkillが自動発動します。

📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

DevOps IaC Engineer

This Skill helps DevOps teams design, implement, and maintain cloud infrastructure using Infrastructure as Code principles. Use this when building cloud architectures, deploying containerized applications, setting up CI/CD pipelines, or implementing observability and security practices.

Quick Navigation

  • Terraform & IaC: See terraform.md for Terraform best practices and patterns
  • Kubernetes & Containers: See kubernetes.md for container orchestration
  • Cloud Platforms: See cloud_platforms.md for AWS, Azure, GCP guidance
  • CI/CD Pipelines: See cicd.md for pipeline design and GitOps
  • Observability: See observability.md for monitoring and logging
  • Security: See security.md for DevSecOps practices
  • Templates & Tools: See templates.md for ready-to-use templates

Core Principles

Key DevOps Terminology (Consistent Throughout)

  • Infrastructure as Code (IaC): Managing infrastructure through declarative code files
  • GitOps: Using Git as the single source of truth for infrastructure and applications
  • Immutable Infrastructure: Infrastructure components that are replaced rather than modified
  • Service Mesh: Infrastructure layer for service-to-service communication
  • Observability: Ability to understand system state from external outputs (logs, metrics, traces)
  • SLI/SLO/SLA: Service Level Indicators/Objectives/Agreements for reliability
  • RTO/RPO: Recovery Time Objective/Recovery Point Objective for disaster recovery

Workflow: Infrastructure Implementation

When implementing infrastructure, follow this structured approach:

  1. Understand Requirements

    • What is the business need? (new application, migration, scaling, compliance)
    • What are the scale requirements? (traffic, data, geographic distribution)
    • What are the constraints? (budget, timeline, regulatory)
    • What are the dependencies? (existing systems, data sources)
  2. Design Architecture

    • Choose appropriate cloud platform(s) and services
    • Design for high availability and fault tolerance
    • Plan network topology and security boundaries
    • Identify data flows and storage requirements
    • Document architecture with diagrams
  3. Select IaC Tools

    • Terraform for multi-cloud infrastructure provisioning
    • Kubernetes manifests/Helm for container orchestration
    • CI/CD tool selection based on team and requirements
    • Configuration management tools if needed
  4. Implement Infrastructure

    • Create modular, reusable IaC code
    • Follow security best practices (see security.md)
    • Implement proper state management and versioning
    • Use consistent naming and tagging conventions
    • Document code and create README files
  5. Set Up Observability

    • Define SLIs and SLOs for critical services
    • Implement logging, metrics, and tracing
    • Create dashboards and alerts
    • Set up log aggregation and analysis
    • Plan on-call rotation and runbooks
  6. Implement CI/CD

    • Design deployment pipeline stages
    • Implement automated testing (unit, integration, e2e)
    • Set up GitOps workflows
    • Configure deployment strategies (blue/green, canary)
    • Implement rollback procedures
  7. Test & Validate

    • Run infrastructure tests (security, compliance, cost)
    • Perform disaster recovery drills
    • Load testing and performance validation
    • Security scanning and penetration testing
    • Document test results and improvements
  8. Deploy & Monitor

    • Execute phased rollout
    • Monitor metrics and logs closely
    • Validate against SLOs
    • Document runbooks and troubleshooting guides
    • Conduct post-deployment review

Decision Framework: Tool Selection

Multi-Cloud Requirements → Terraform or Pulumi AWS-Only → Terraform, AWS CDK, or CloudFormation Container Orchestration → Kubernetes (EKS, GKE, AKS) Simple Container Deployment → ECS, Cloud Run, or App Service Configuration Management → Ansible or cloud-native solutions GitOps Workflows → ArgoCD or Flux CI/CD Pipelines → GitHub Actions, GitLab CI, or Jenkins

Common Challenges & Solutions

Problem: Infrastructure drift between code and reality Solution: Implement automated drift detection, use terraform plan in CI/CD, enable read-only production access, maintain state file integrity

Problem: Secrets management and credential exposure Solution: Use cloud-native secret managers (AWS Secrets Manager, HashiCorp Vault), implement SOPS for encrypted secrets in Git, use IRSA/workload identity

Problem: High cloud costs and unexpected bills Solution: Implement tagging strategy, use cost allocation tags, set up budget alerts, right-size resources, use spot instances, implement auto-scaling

Problem: Complex Kubernetes configurations Solution: Use Helm charts for templating, implement Kustomize for environment-specific configs, follow GitOps patterns, use operators for complex workloads

Collaboration Tips

  • With Development Teams: Provide self-service platforms, document APIs, share infrastructure as reusable modules
  • With Security Teams: Implement policy as code, automate compliance checks, provide audit trails
  • With SRE Teams: Define SLIs/SLOs together, share on-call responsibilities, collaborate on incident response
  • With Finance Teams: Provide cost visibility, forecast expenses, implement chargeback models

Next Steps

  1. Start with terraform.md if you're implementing infrastructure as code
  2. Use kubernetes.md for container orchestration
  3. Reference templates.md for ready-to-use configurations
  4. Check observability.md to set up monitoring

Note: Always verify current infrastructure state, security requirements, and compliance needs before implementing changes. This Skill provides frameworks and best practices but should be adapted to your organization's specific requirements.

同梱ファイル

※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。