Agent skill
terraform-azure-devops
Generate Terraform configurations for Azure DevOps resources. Use when managing Azure DevOps infrastructure as code.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/terraform-azure-devops
SKILL.md
Terraform Azure DevOps Skill
TerraformでAzure DevOpsリソースを管理するスキルです。
主な機能
- プロジェクト管理: Terraform でプロジェクト作成
- リポジトリ: Gitリポジトリ管理
- パイプライン: IaC化
- 変数グループ: コード管理
プロバイダー設定
terraform {
required_providers {
azuredevops = {
source = "microsoft/azuredevops"
version = "~> 0.10.0"
}
}
}
provider "azuredevops" {
org_service_url = "https://dev.azure.com/myorg"
personal_access_token = var.pat
}
プロジェクト作成
resource "azuredevops_project" "project" {
name = "My Terraform Project"
description = "Project managed by Terraform"
visibility = "private"
version_control = "Git"
work_item_template = "Agile"
features = {
"boards" = "enabled"
"repositories" = "enabled"
"pipelines" = "enabled"
"testplans" = "disabled"
"artifacts" = "enabled"
}
}
リポジトリ作成
resource "azuredevops_git_repository" "repo" {
project_id = azuredevops_project.project.id
name = "my-app"
initialization {
init_type = "Clean"
}
}
ビルドパイプライン
resource "azuredevops_build_definition" "build" {
project_id = azuredevops_project.project.id
name = "CI Pipeline"
ci_trigger {
use_yaml = true
}
repository {
repo_type = "TfsGit"
repo_id = azuredevops_git_repository.repo.id
branch_name = azuredevops_git_repository.repo.default_branch
yml_path = "azure-pipelines.yml"
}
}
変数グループ
resource "azuredevops_variable_group" "vars" {
project_id = azuredevops_project.project.id
name = "Production Variables"
description = "Variables for production"
allow_access = true
variable {
name = "DATABASE_HOST"
value = "prod-db.database.windows.net"
}
variable {
name = "DATABASE_PASSWORD"
secret_value = var.db_password
is_secret = true
}
}
バージョン情報
- Version: 1.0.0
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?