🎯

terraform-azure-devops

🎯Skill

from ntaksh42/agents

VibeIndex|
What it does

Generates and manages Azure DevOps infrastructure as code using Terraform, enabling automated project, repository, pipeline, and variable group configurations.

📦

Part of

ntaksh42/agents(78 items)

terraform-azure-devops

Installation

📋 No install commands found in docs. Showing default command. Check GitHub for actual instructions.
Quick InstallInstall with npx
npx skills add ntaksh42/agents --skill terraform-azure-devops
2Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Generate Terraform configurations for Azure DevOps resources. Use when managing Azure DevOps infrastructure as code.

Overview

# Terraform Azure DevOps Skill

TerraformでAzure DevOpsリソースを管理するスキルです。

主な機能

  • プロジェクト管理: Terraform でプロジェクト作成
  • リポジトリ: Gitリポジトリ管理
  • パイプライン: IaC化
  • 変数グループ: コード管理

プロバイダー設定

```hcl

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

}

```

プロジェクト作成

```hcl

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"

}

}

```

リポジトリ作成

```hcl

resource "azuredevops_git_repository" "repo" {

project_id = azuredevops_project.project.id

name = "my-app"

initialization {

init_type = "Clean"

}

}

```

ビルドパイプライン

```hcl

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"

}

}

```

変数グループ

```hcl

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

More from this repository10

🎯
document-summarizer🎯Skill

Generates concise summaries of documents by extracting key information and condensing text into a more digestible format.

🎯
algorithmic-art🎯Skill

Generates creative algorithmic art using p5.js, creating unique visual designs with patterns, fractals, and dynamic animations.

🎯
sql-query-helper🎯Skill

Generates, optimizes, and explains SQL queries with best practices, providing intelligent database query solutions across multiple database platforms.

🎯
plantuml-diagram🎯Skill

Generates PlantUML diagrams (class, sequence, component) to visually represent system architecture and UML models.

🎯
azure-pipelines-generator🎯Skill

Generates Azure Pipelines YAML configurations automatically for CI/CD workflows, supporting multi-stage builds and deployments across different environments.

🎯
kubernetes-helper🎯Skill

Assists Kubernetes users by generating, validating, and explaining Kubernetes manifests and configurations with AI-powered insights.

🎯
using-git-worktrees🎯Skill

Creates isolated Git worktrees with smart directory selection and safety verification for feature work and branch management.

🎯
dependency-analyzer🎯Skill

Analyzes project dependencies, identifies potential conflicts, and provides insights into library compatibility and version management.

🎯
brainstorming🎯Skill

Collaboratively refines rough ideas into fully-formed designs through systematic questioning, alternative exploration, and incremental validation.

🎯
azure-boards-helper🎯Skill

Manages Azure Boards work items by creating, querying, and automating work item workflows using WIQL and comprehensive templates.