Token导航 LogoToken导航TokenDH.com
云服务external-serviceclawhub未标认证来源可访问clear审计通过

azureAzure 部署

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

56,832

周安装

2,368

GitHub Stars

2

下载量

18,944
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:azure(Azure 部署)
来源仓库:https://github.com/ivangdavila/azure
安装命令:
openclaw skills install azure
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install azure

简介

用于辅助 Azure 云服务部署、监控和管理任务。

  • 适合整理部署流程、分析服务状态或排查运行问题。
  • 使用时需确认账号权限、订阅范围和资源组设置。azure 属于云服务类 Skill,可作为该场景下的辅助能力补充。
  • 涉及生产环境变更时应先评估风险并备份关键配置。
  • 建议根据实际项目需求调整部署策略和监控指标。

SKILL.md

name
Azure
description
Deploy, monitor, and manage Azure services with battle-tested patterns.
metadata
{"clawdbot":{"emoji":"🔷","requires":{"anyBins":["az"]},"os":["linux","darwin","win32"]}}

Azure Production Rules

Cost Traps

  • Stopped VMs still pay for attached disks and public IPs — deallocate fully with az vm deallocate not just stop from portal
  • Premium SSD default on VM creation — switch to Standard SSD for dev/test, saves 50%+
  • Log Analytics workspace retention defaults to 30 days free, then charges per GB — set data retention policy and daily cap before production
  • Bandwidth between regions is charged both ways — keep paired resources in same region, use Private Link for cross-region when needed
  • Cosmos DB charges for provisioned RU/s even when idle — use serverless for bursty workloads or autoscale with minimum RU setting

Security Rules

  • Resource Groups don't provide network isolation — NSGs and Private Endpoints do. RG is for management, not security boundary
  • Managed Identity eliminates secrets for Azure-to-Azure auth — use System Assigned for single-resource, User Assigned for shared identity
  • Key Vault soft-delete enabled by default (90 days) — can't reuse vault name until purged, plan naming accordingly
  • Azure AD conditional access policies don't apply to service principals — use App Registrations with certificate auth, not client secrets
  • Private Endpoints don't automatically update DNS — configure Private DNS Zone and link to VNet or resolution fails

Networking

  • NSG rules evaluate by priority (lowest number first) — default rules at 65000+ always lose to custom rules
  • Application Gateway v2 requires dedicated subnet — at least /24 recommended for autoscaling
  • Azure Firewall premium SKU required for TLS inspection and IDPS — standard can't inspect encrypted traffic
  • VNet peering is non-transitive — hub-and-spoke requires routes in each spoke, or use Azure Virtual WAN
  • Service Endpoints expose entire service to VNet — Private Endpoints give private IP for specific resource instance

Performance

  • Azure Functions consumption plan has cold start — Premium plan with minimum instances for latency-sensitive
  • Cosmos DB partition key choice is permanent and determines scale — can't change without recreating container
  • App Service plan density: P1v3 handles ~10 slots, more causes resource contention — monitor CPU/memory per slot
  • Azure Cache for Redis Standard tier has no SLA for replication — use Premium for persistence and clustering
  • Blob storage hot tier for frequent access — cool has 30-day minimum, archive has 180-day and hours-long rehydration

Monitoring

  • Application Insights sampling kicks in at high volume — telemetry may miss intermittent errors, adjust MaxTelemetryItemsPerSecond
  • Azure Monitor alert rules charge per metric tracked — consolidate metrics in Log Analytics for complex alerts
  • Activity Log only shows control plane operations — diagnostic settings required for data plane (blob access, SQL queries)
  • Alert action groups have rate limits — 1 SMS per 5 min, 1 voice call per 5 min, 100 emails per hour per group
  • Log Analytics query timeout is 10 minutes — optimize queries with time filters first, then other predicates

Infrastructure as Code

  • ARM templates fail silently on some property changes — use what-if deployment mode to preview changes
  • Terraform azurerm provider state contains secrets in plaintext — use remote backend with encryption (Azure Storage + customer key)
  • Bicep is ARM's replacement — transpiles to ARM, better tooling, use for new projects
  • Resource locks prevent accidental deletion but block some operations — CanNotDelete lock still allows modifications
  • Azure Policy evaluates on resource creation and updates — existing non-compliant resources need remediation task

Identity and Access

  • RBAC role assignments take up to 30 minutes to propagate — pipeline may fail immediately after assignment
  • Owner role can't manage role assignments if PIM requires approval — use separate User Access Administrator
  • Service principal secret expiration defaults to 1 year — set calendar reminder or use certificate with longer validity
  • Azure AD B2C is separate from Azure AD — different tenant, different APIs, different pricing

适合场景

01

Azure 资源规划

02

云服务升级

03

基础设施检查

04

企业云环境自动化

能力概览

能力 1

整理 Azure 服务操作流程

能力 2

提示 CLI/MCP 前置条件

能力 3

辅助云资源检查和规划

能力 4

保留官方服务来源线索

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

91.19%
按下载量换算17,275

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills