resource-groups

Create, inspect, tag, list, and delete Azure resource groups across subscriptions.

Updated Apr 10, 2026
One-click install
npx skills add https://github.com/theslashdojo/dojo --skill resource-groups
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: resource-groups
Source: https://github.com/theslashdojo/dojo/tree/main/nodes/azure/resource-groups
Command: npx skills add https://github.com/theslashdojo/dojo --skill resource-groups

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires az, and includes scripts (resource) components.

What problem does it solve?

Azure environments often require a defined boundary to safely provision and tear down resources. This skill provides a consistent way to create, inspect, tag, list, and delete Azure resource groups, ensuring lifecycle boundaries before provisioning workloads.

Core Features & Use Cases

  • Create resource groups with idempotent behavior and safety tags to encode ownership and environment.
  • Inspect existing groups and read location, tags, and provisioning state to guide downstream provisioning.
  • Update or merge tags to reflect ownership, cost centers, or environment changes without recreation.
  • Delete groups safely with optional synchronous wait to confirm teardown across subscriptions.

Quick Start

Create a new resource group named rg-dojo in eastus with owner=agent env=dev

Frequently Asked Questions about resource-groups

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Azure resource group lifecycle management with the Azure CLI?

You can automate Azure resource group lifecycle management by using CLI scripts to handle creating, inspecting, tagging, listing, and deleting groups across subscriptions. This ensures consistent environment boundaries before provisioning workloads.

Does the Azure CLI support idempotent creation of Azure resource groups?

Yes, the Azure CLI supports idempotent creation of resource groups. You can safely run creation scripts repeatedly without causing errors, and apply safety tags to encode ownership and environment details during the process.

Can I update or merge tags on an existing Azure resource group without recreating it?

You can update or merge tags on an existing Azure resource group without recreation. This allows you to reflect ownership, cost centers, or environment changes directly on the group while preserving its current provisioning state.

What is the safest way to delete Azure resource groups across different subscriptions?

The safest way to delete Azure resource groups is by using subscription validation alongside synchronous or asynchronous deletion options. Synchronous waits confirm complete teardown before proceeding, ensuring safe environment boundaries.

Do I need the az CLI installed to manage resource group boundaries for Azure provisioning?

Yes, you need the az CLI installed to manage resource group boundaries. It provides the underlying command-line interface required to execute the scripts that create, inspect, tag, and delete groups across your Azure subscriptions.