Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

openclaw-azure-cli

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openclaw-azure-cli

CLI to deploy OpenClaw on Azure AI Foundry — no repo clone needed

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

openclaw-azure-cli

Deploy OpenClaw on Azure AI Foundry with a single CLI — no repo clone needed.

This file is the npm package README source of truth and must be updated before publish.

npm version

Quick start

npm install -g openclaw-azure-cli
openclaw-azure init
openclaw-azure deploy

Prerequisites

  • Node.js LTS
  • Azure CLI with Bicep (az bicep install)
  • An Azure subscription
  • A Telegram bot token from @BotFather

Commands

CommandDescription
openclaw-azure initInteractive config collection (suffix, location, VM, model settings)
openclaw-azure deployPreflight checks, Azure login, infrastructure provisioning, and validation
openclaw-azure pairApprove a Telegram pairing code on a running deployment
openclaw-azure destroyDelete all deployed resources and purge soft-deleted items
openclaw-azure helpShow usage information

What gets deployed

  • AI Foundry — Hub + Project with GPT-4o model deployment
  • Virtual Machine — Ubuntu 24.04 LTS running OpenClaw via systemd
  • Key Vault — Stores Foundry API key and Telegram bot token (RBAC-secured)
  • Networking — Private VNet, NAT Gateway (outbound-only), NSG, private endpoints
  • Private DNS Zones — For AI Services, OpenAI, and Key Vault

All services use private endpoints with no public inbound access.

Architecture

VNet 10.40.0.0/16
├─ snet-vm  10.40.2.0/24  (VM + NAT Gateway, no public IP)
└─ snet-pe  10.40.3.0/24  (Private endpoints)

Private DNS Zones:
├─ privatelink.openai.azure.com
├─ privatelink.services.ai.azure.com
└─ privatelink.vaultcore.azure.net

Local development

cd cli
npm install
npm run build
npm link              # symlink globally for testing
openclaw-azure help

Configuration

All state is stored locally in .openclaw-azure/:

.openclaw-azure/
├─ config.json                  # CLI configuration
├─ generated.parameters.json    # Bicep deployment parameters
└─ ssh/
   ├─ id_ed25519                # Private key
   └─ id_ed25519.pub            # Public key

Notes

  • Uses direct Azure auth (az login) with subscription selection.
  • Telegram bot token is prompted at deploy time and stored in Key Vault (not persisted locally).
  • SSH keypair can be auto-generated or you can provide your own.
  • The bonjour plugin is disabled automatically (mDNS doesn't work on headless cloud VMs).

Keywords

openclaw

FAQs

Package last updated on 27 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts