Azure

Azure AI app builder.
Your dashboard.
Zero portal clicks.

Anything you can do in the Azure CLI, your agent can do for you. Connect camelAI to your Azure subscription and manage infrastructure through conversation.

One agent. Your entire Azure estate.

Your agent sees every subscription, resource group, and service at a glance. Think of it as your personal Azure portal — one that speaks English.

47

Virtual Machines

44 healthy3 warning
12

App Services

12 healthy
23

Storage Accounts

22 healthy1 warning
8

Virtual Networks

8 healthy
31

Security Groups

28 healthy3 warning
6

SQL Databases

6 healthy

Production Subscription

a1b2c3d4-e5f6-7890-abcd-ef1234567890

127 resources|6 resource groups|East US 2

From CLI commands to conversations.

You already know what you want to do. Now just say it. Your agent translates natural language into Azure CLI operations, handles the output, and takes action.

List and inspect

Azure CLI

$ az vm list --resource-group production \
  --output table --query "[].{Name:name, Status:powerState}"

Just say

Show me all VMs in the production resource group with their power state.

Configure security

Azure CLI

$ az network nsg rule create \
  --resource-group production \
  --nsg-name web-nsg \
  --name AllowHTTPS --priority 100 \
  --destination-port-ranges 443 \
  --access Allow --protocol Tcp

Just say

Add an HTTPS rule to the web-nsg security group in production. Priority 100, TCP port 443.

Analyze costs

Azure CLI

$ az consumption usage list \
  --start-date 2026-02-01 --end-date 2026-03-01 \
  --query "[].{Service:consumedService, Cost:pretaxCost}" \
  | az ... # (manual aggregation & analysis)

Just say

Break down last month's Azure spend by service. Flag anything over $500 and suggest savings.

What your agent handles.

Infrastructure management, security, cost analysis, identity — your agent covers the full Azure surface area.

Spin up & shut down VMs

Launch, resize, deallocate, and snapshot. Manage availability sets and scale sets. No portal clicking.

Network security groups

Create rules, audit open ports, lock down subnets. Review inbound/outbound rules across your entire estate.

Cost analysis

Spend breakdown by subscription, resource group, and service. Reserved instance recommendations and savings opportunities.

Resource optimization

Find idle VMs, orphaned disks, oversized App Service plans. Right-size recommendations backed by utilization data.

Azure AD management

Users, groups, role assignments, conditional access policies. Security audits and compliance checks.

App Service configuration

Deploy slots, scaling rules, custom domains, SSL bindings. Swap staging to production in one command.

See where every dollar goes.

Your agent builds cost dashboards with savings recommendations that Azure Cost Management doesn't surface. Updated daily via cron.

Azure Cost Dashboard — March 2026

Total Monthly Spend

$33,927

+4.2% vs last month

Potential Savings

$6,840

20.2% of total spend

RI Coverage

34%

Target: 70%+ recommended

Spend by Service

Virtual Machines$12,847
App Services$6,230
Azure SQL$5,410
Storage$3,920
Networking$2,840
Other$2,680

$6,840/mo in savings identified

3 VMs right-sizing opportunities, 2 reserved instance recommendations, 7 orphaned disks to delete, and 4 idle public IPs to release.

Set it. Forget it. Your agent runs 24/7.

Schedule your agent to audit resources, generate reports, and automate housekeeping — all on a cron. It remembers what it found last time.

camelAI Cron Scheduler
# Azure infrastructure automation
0 8 * * *    audit-idle-resources
0 9 * * 1    weekly-cost-report
0 19 * * 1-5  shutdown-dev-vms
8:00 AMDaily resource audit

Scan all subscriptions for idle VMs, orphaned disks, and unattached public IPs. Flag cost anomalies over $100/day.

Mon 9:00 AMWeekly cost report

Generate a breakdown of the previous week's spend by team, resource group, and service. Email to finance and post to Slack.

7:00 PMDev environment shutdown

Deallocate all VMs tagged 'environment:dev'. Automatically restart them at 8 AM the next business day.

Enterprise-ready from day one.

Azure AD SSO

Single sign-on with your existing Azure Active Directory. SAML and OIDC supported. No separate accounts to manage.

Service principal auth

Authenticate with a service principal and client certificate. Credentials are encrypted at rest and never leave your tenant.

Role-based access

Map Azure RBAC roles to camelAI permissions. Control which teams can manage which subscriptions and resource groups.

Audit logging

Every action logged with user identity, timestamp, resource, and operation. Export to Azure Monitor or your SIEM.

Private connectivity

Connect through Azure Private Link and VNet integration. Keep management traffic off the public internet.

Multi-subscription

Manage your entire Azure estate from one agent. Multiple subscriptions, management groups, and tenants — all unified.

What will you build for your Azure estate?

Connect to our Azure subscription and build a cost analysis dashboard. Break down spend by resource group and service for the last 3 months. Flag any resource over $500/month and suggest reserved instance savings.

Try this prompt

Audit our network security groups across all subscriptions. Find any rules allowing inbound traffic on port 22 or 3389 from 0.0.0.0/0. Build a security report and set up weekly monitoring.

Try this prompt

Create a VM management dashboard for our production subscription. Show all VMs with their size, CPU utilization, and monthly cost. Add controls to start, stop, and resize directly from the dashboard.

Try this prompt

Set up a daily cron that checks for idle Azure resources — VMs with less than 5% CPU over the last 7 days, unattached managed disks, and unused public IPs. Post a summary to our Slack channel every morning.

Try this prompt
Azure Cloud Shell — camelAI Agent
# Find all idle VMs across subscriptions
$ az vm list --query "[?powerState=='VM running']" \
    --output json | az-idle-check --threshold 5

# Right-size oversized VMs based on 30-day metrics
$ az monitor metrics list \
    --resource /subscriptions/.../providers/Microsoft.Compute/virtualMachines/prod-api-01 \
    --metric "Percentage CPU" --interval PT1H --start-time 2026-02-17

# Audit NSG rules for public internet exposure
$ az network nsg list --query "[].securityRules[?sourceAddressPrefix=='*']"

# Check reserved instance coverage and recommendations
$ az consumption reservation summary list \
    --reservation-order-id a1b2c3d4-... --grain monthly

camelAI speaks Azure CLI natively — resource management, networking, identity, cost analysis, monitoring, and more. Everything the az CLI can do, your agent can do for you.

Thousands of Azure resources.

One conversation.