skills.vishalvoidskills/vishalvoid
Technical & DevelopmentIntermediate

azure-resource-manager-redis-dotnet

Azure Cache for Redis provisioning

Developer Setup

Setup & Installation

bash
npx skills add https://github.com/microsoft/skills --skill azure-resource-manager-redis-dotnet

Overview

What This Skill Does

Azure.ResourceManager.Redis is the .NET SDK for the Azure Resource Manager management plane, covering provisioning and configuration of Azure Cache for Redis instances. It handles firewall rules, access key management, patch schedules, geo-replication via linked servers, and private endpoints. For data operations like get/set or pub/sub, use StackExchange.Redis instead.

Application

When to use this Skill

Documentation

Show Skills.md file

Azure.ResourceManager.Redis (.NET)

Management plane SDK for provisioning and managing Azure Cache for Redis resources via Azure Resource Manager.

⚠️ Management vs Data Plane

  • This SDK (Azure.ResourceManager.Redis): Create caches, configure firewall rules, manage access keys, set up geo-replication
  • Data Plane SDK (StackExchange.Redis): Get/set keys, pub/sub, streams, Lua scripts

Installation

dotnet add package Azure.ResourceManager.Redis
dotnet add package Azure.Identity

Current Version: 1.5.1 (Stable)
API Version: 2024-11-01
Target Frameworks: .NET 8.0, .NET Standard 2.0

Environment Variables

AZURE_SUBSCRIPTION_ID=<your-subscription-id>  # Required: Azure subscription ID
AZURE_TOKEN_CREDENTIALS=prod  # Required only if DefaultAzureCredential is used in production
AZURE_TENANT_ID=<tenant-id>  # For service principal auth (optional)
AZURE_CLIENT_ID=<client-id>  # For service principal auth (optional)
AZURE_CLIENT_SECRET=<client-secret>  # For service principal auth (optional)
Lines 1 - 28 of 354

Recommendations

Explore other random skills

All skillsMy patterns