terraform-azure-devops
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
More from ntaksh42/agents
document-summarizer
Summarize long documents with key points and abstracts. Use when creating executive summaries or condensing content.
138pptx-generator
Generate PowerPoint presentations with slides, charts, and formatting. Use when creating presentations programmatically.
94document-formatter
Format and style documents with consistent formatting. Use when standardizing document formatting or cleaning up text.
48excel-processor
Process Excel files with data manipulation, formula generation, and chart creation. Use when working with spreadsheets or Excel data.
39presentation-creator
Marpを使用した提案資料・比較検討資料の作成スキル。課題提示、複数案の比較検討、メリット・デメリット整理を含む資料を作成する。使用場面:(1) 技術選定や方式比較の検討資料、(2) 提案書・企画書、(3) 問題解決策の提示、(4) 意思決定を支援するドキュメント。作成完了後は必ずサブエージェントでレビューを実施する。
30pdf-processor
Process, extract, and generate PDF documents with text extraction and form handling. Use when working with PDF files or extracting PDF content.
22