🎯

azure-variable-groups

🎯Skill

from ntaksh42/agents

VibeIndex|
What it does

Manages Azure Pipeline variable groups, enabling centralized configuration and secret management across different environments.

📦

Part of

ntaksh42/agents(78 items)

azure-variable-groups

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 azure-variable-groups
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Manage Azure Pipeline variable groups and library secrets. Use when organizing pipeline variables or managing configuration.

Overview

# Azure Variable Groups Skill

Azure Pipelinesの変数グループを管理するスキルです。

主な機能

  • 変数グループ作成: 共通変数管理
  • Key Vault連携: シークレット管理
  • 環境別変数: Dev/Staging/Prod
  • パイプライン連携: 変数グループ使用

変数グループ作成

Azure CLI

```bash

# 変数グループ作成

az pipelines variable-group create \

--name "Production-Variables" \

--variables \

DATABASE_HOST="prod-db.database.windows.net" \

DATABASE_NAME="proddb" \

API_URL="https://api.production.example.com" \

--authorize true

# Key Vaultリンク変数グループ

az pipelines variable-group create \

--name "Production-Secrets" \

--variables \

ConnectionString \

ApiKey \

--authorize true

# 変数追加

az pipelines variable-group variable create \

--group-id 1 \

--name "NEW_VARIABLE" \

--value "new-value"

```

パイプラインでの使用

```yaml

variables:

- group: Production-Variables

- group: Production-Secrets

stages:

- stage: Deploy

jobs:

- job: DeployJob

steps:

- script: |

echo "Database: $(DATABASE_HOST)"

echo "API: $(API_URL)"

displayName: 'Use Variables'

```

Key Vault統合

```yaml

# Key Vaultから変数取得

variables:

- group: KeyVault-Secrets

steps:

- task: AzureKeyVault@2

inputs:

azureSubscription: 'Azure-Connection'

KeyVaultName: 'MyKeyVault'

SecretsFilter: '*'

RunAsPreJob: true

```

環境別変数管理

```yaml

# Dev環境

variables:

- ${{ if eq(variables['Build.SourceBranch'], 'refs/heads/develop') }}:

- group: Dev-Variables

# Prod環境

- ${{ if eq(variables['Build.SourceBranch'], 'refs/heads/main') }}:

- group: Prod-Variables

```

バージョン情報

  • 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.