Skip to main content

AI-powered multi-cloud cost optimization agent

Project description

Argus

AI-powered cloud cost optimization agent for AWS, GCP, and Azure.

Argus finds idle and wasted cloud resources โ€” stopped EC2 instances, unattached EBS volumes, orphaned Elastic IPs, underutilized RDS databases โ€” and delivers a prioritized, AI-reasoned report to Slack every week.

CI Publish PyPI PyPI Downloads Python 3.11+ License: MIT Docs

Argus โ€” AWS Waste Report (2026-06-24)

๐Ÿ’ธ $1,432.85/month estimated waste
๐Ÿ“Š 6 idle resources across 1 account

Six resources were identified as idle or over-provisioned. The RDS instance
accounts for 87% of waste and should be right-sized immediately.

โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
Top findings
๐Ÿ”ด db-analytics-01  ยท RDS         ยท $1,240.00/mo
๐Ÿ”ด cache-prod-001   ยท ElastiCache  ยท   $142.00/mo
๐Ÿ”ด i-0abc123def     ยท EC2          ยท    $28.40/mo
๐ŸŸก nat-0def456      ยท NAT Gateway  ยท    $10.80/mo
๐ŸŸก vol-orphan       ยท EBS          ยท     $8.00/mo
โšช +1 more finding in the full report

[ ๐Ÿ“„ Full report (HTML) ]  [ vamshisiddarth/argus ]

What it does

Every week (or on demand), Argus:

  1. Discovers every resource in your cloud account using AWS Resource Explorer / GCP Asset Inventory / Azure Resource Graph
  2. Analyzes each candidate โ€” CloudWatch/Cloud Monitoring/Azure Monitor metrics, Cost Explorer/BigQuery/Cost Management cost data, and CloudTrail/Audit Log/Activity Log last-activity timestamps
  3. Reasons about idleness using Claude (via AWS Bedrock, Anthropic API, or Vertex AI) โ€” no hardcoded thresholds
  4. Reports a compact digest (Slack, Microsoft Teams, or generic webhook) with top findings and a link to a full self-contained HTML report

The Full report button links to a self-contained HTML file (S3 / GCS / Azure Blob) with a filterable/sortable table and expandable AI reasoning per finding. Works offline, no login required.

See realistic examples: sample-report-aws.json ยท sample-report-gcp.json ยท sample-report-azure.json โ€” 5 findings each with AI-written reasoning, metrics, and cost data.


Architecture

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚                    Agent Loop (ReAct)                   โ”‚
โ”‚   Think โ†’ Call Tool โ†’ Observe โ†’ Think โ†’ Submit          โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                     โ”‚
        โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
        โ–ผ                         โ–ผ
  CloudAdapter               AIProvider
  (AWS / GCP / Azure)        (Bedrock / Anthropic / Vertex)
        โ”‚
   โ”Œโ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
   โ”‚  list_resources       โ”‚  Resource Explorer / Asset Inventory / Resource Graph
   โ”‚  get_metrics          โ”‚  CloudWatch / Cloud Monitoring / Azure Monitor
   โ”‚  get_cost             โ”‚  Cost Explorer / BigQuery / Cost Management
   โ”‚  get_last_activity    โ”‚  CloudTrail / Audit Logs / Activity Log
   โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Design principle: Same brain. Different hands. Different home.

  • Brain = agent loop + AI reasoning (core/) โ€” pure Python, zero cloud imports
  • Hands = cloud adapters (adapters/) โ€” swappable per cloud
  • Home = entrypoints (entrypoints/) โ€” Lambda / Cloud Run / Azure Function

Quick start

Option A โ€” Docker (fastest)

docker build --build-arg CLOUD=aws -t argus .

docker run --rm \
  -e ANTHROPIC_API_KEY=sk-ant-... \
  -e DRY_RUN=true \
  -v ~/.aws:/root/.aws:ro \
  argus --cloud aws --run-now --dry-run

Option B โ€” Install from PyPI

Prerequisites

  • Python 3.11+
  • Cloud credentials configured (see below)
  • An Anthropic API key or cloud-native AI access (Bedrock / Vertex AI / Azure OpenAI)
pip install argus-cloud-optimizer
argus --version   # argus 0.3.0
argus --help

One package โ€” all three clouds included. No extras needed. --cloud auto-detects from your environment (GCP_PROJECT_ID / AZURE_SUBSCRIPTION_IDS / AWS credentials), or specify explicitly.

Verified 2026-06-21: pip install argus-cloud-optimizer && argus --version works on a clean Python 3.11/3.12/3.13 venv with no project files.

AWS:

export AI_PROVIDER=anthropic
export ANTHROPIC_API_KEY=sk-ant-...
export DRY_RUN=true
argus scan --cloud aws --dry-run
# or just: argus scan  (auto-detects from AWS_PROFILE / AWS_ACCESS_KEY_ID)

Enable Resource Explorer with an aggregator index in us-east-1 (or set RESOURCE_EXPLORER_REGION).

GCP:

export GCP_PROJECT_ID=my-project-123
export AI_PROVIDER=anthropic
export ANTHROPIC_API_KEY=sk-ant-...
export DRY_RUN=true
argus scan --cloud gcp --dry-run
# or just: argus scan  (auto-detects from GCP_PROJECT_ID)

Requires BigQuery billing export enabled for cost data.

Azure:

export AZURE_SUBSCRIPTION_IDS=sub-id-1,sub-id-2
export AI_PROVIDER=anthropic
export ANTHROPIC_API_KEY=sk-ant-...
export DRY_RUN=true
argus scan --cloud azure --dry-run
# or just: argus scan  (auto-detects from AZURE_SUBSCRIPTION_IDS)

Option C โ€” Clone and develop

git clone https://github.com/vamshisiddarth/argus.git
cd argus
pip install -e ".[all,dev]"
cp .env.example .env                       # edit with your values
argus --cloud aws --run-now

Interactive Chat Mode

Ask questions about your cloud infrastructure in natural language:

pip install argus-cloud-optimizer[chat]   # optional: adds rich formatting
argus chat --cloud aws --ai-provider anthropic   # explicit cloud
argus chat                                       # auto-detects cloud
Argus v0.3.0 โ€” Interactive Cloud Cost Assistant
Cloud: AWS  |  Accounts: prod (123456789012)  |  Budget: $1.00/session
Tip: end a line with \ to continue on the next line.
Type your question, or /help for commands.

argus> What's costing the most and not doing anything?

  โ†’ Scanning resources
  โ†’ Fetching cost data

Argus: Three idle resources account for $73.30/mo in waste:
  โ€ข nat-0abc123 (NAT Gateway, us-east-1) โ€” $32.50/mo โ€” 847 bytes in 90 days, delete it
  โ€ข db-prod-replica (RDS, us-west-2) โ€” $28.80/mo โ€” zero connections, read replica with no readers
  โ€ข vol-0def456 (EBS, us-east-1) โ€” $12.00/mo โ€” unattached since 2026-03-15

[this turn: 2,847 in / 412 out, $0.0147 | session: 2,847 in / 412 out, $0.0147 / $1.00 budget]

argus> Is the RDS replica definitely safe to delete?

  โ†’ Fetching metrics: db-prod-replica
  โ†’ Checking last activity: db-prod-replica

Argus: Yes. db-prod-replica is confirmed idle โ€” CPU avg 0.1%, DatabaseConnections avg 0,
last activity 2026-03-21 (93 days ago). The primary db-prod is fully active; this replica
has no readers. Safe to snapshot and delete. Saves $28.80/mo.

[this turn: 1,923 in / 187 out, $0.0089 | session: 4,770 in / 599 out, $0.0236 / $1.00 budget]

argus> What would our total monthly bill look like after cleaning all three up?

Argus: Current waste: $73.30/mo across the three resources. Deleting all three saves
$879.60/year. Your remaining infrastructure cost is unchanged โ€” none of these have
active dependencies based on metrics and activity logs.

[this turn: 1,102 in / 98 out, $0.0047 | session: 5,872 in / 697 out, $0.0283 / $1.00 budget]

argus> /summary
Summarizing conversation...
Done โ€” earlier turns condensed into context.

argus> Remind me which one had the highest monthly cost?

Argus: nat-0abc123 (NAT Gateway, us-east-1) at $32.50/mo โ€” negligible traffic over 90 days.

Available REPL commands: /help, /scan, /cost, /clear, /summary, /quit

CLI Options

argus scan [--cloud aws|gcp|azure] [options]    # full batch scan
argus chat [--cloud aws|gcp|azure] [options]    # interactive Q&A
argus --run-now --cloud aws [options]           # backward compat

  --cloud CLOUD              Cloud provider (auto-detected from env vars if omitted)
  -V, --version              Show version and exit
  --dry-run                  Print notification payload instead of posting
  --ignore-regions REGIONS   Comma-separated regions to skip (e.g. ap-east-1,me-south-1)
  --ai-provider PROVIDER     anthropic | bedrock | vertexai | azure_openai (default: anthropic)
  --accounts PATH            Path to accounts.yaml for multi-account/project/subscription mode
  --max-resources N          Maximum resources to analyze per scan (default: 200)
  --lookback-days DAYS       Metrics lookback window in days (default: 90, use 14 for faster local dev)
  --llm-budget USD           Cost budget per scan/session (default: $2.00 scan, $1.00 chat)

Deploy to AWS Lambda

Uses AWS SAM โ€” handles packaging and upload automatically. No S3 bucket needed.

Single account

make deploy-aws
# or manually:
cd deploy/aws/single-account
sam build && sam deploy --guided

sam deploy --guided walks you through parameters (Slack webhook, region, AI provider) and saves them to samconfig.toml for future deploys. Subsequent deploys are just sam deploy.

The stack creates:

  • Lambda function (runs weekly via EventBridge)
  • IAM role with least-privilege read-only permissions
  • S3 bucket for full JSON report storage (90-day retention)

Multi-account

Hub account (runs Argus):

make deploy-aws-multi
# or manually:
cd deploy/aws/multi-account/hub
sam build && sam deploy --guided

Each spoke account (read-only IAM role only โ€” no Lambda):

aws cloudformation deploy \
  --template-file deploy/aws/multi-account/spoke-role.yaml \
  --stack-name Argus-Spoke \
  --capabilities CAPABILITY_IAM \
  --parameter-overrides HubAccountId=<hub-account-id>

The hub stack output includes the HubRoleArn โ€” use it as the HubRoleArn parameter for spoke deployments.


Deploy to GCP (Cloud Run)

# Authenticate
gcloud auth application-default login

# Set your project
gcloud config set project YOUR_PROJECT_ID

# Deploy
bash deploy/gcp/deploy.sh

Requires: Cloud Run API, Cloud Scheduler API, BigQuery billing export enabled.


Deploy to Azure (Function App)

# Authenticate
az login

# Deploy
az deployment group create \
  --resource-group Argus-RG \
  --template-file deploy/azure/function-app.bicep \
  --parameters subscriptionIds="sub-id-1,sub-id-2" \
               slackWebhookUrl="https://hooks.slack.com/services/..."

AI providers

Provider Use case Setup
Anthropic API Local dev, any cloud Set ANTHROPIC_API_KEY
AWS Bedrock AWS production IAM role โ€” no key needed
Vertex AI (Gemini) GCP production ADC โ€” no key needed
Azure OpenAI (GPT-4o) Azure production Managed identity โ€” no key needed

Set AI_PROVIDER=anthropic|bedrock|vertexai|azure_openai in .env or the deployment environment. Use AI_MODEL to override the model for any provider, and AI_TEMPERATURE to control creativity (default: 0.0).


Multi-account / multi-project setup

Create accounts.yaml with the key matching your cloud:

AWS (hub/spoke with STS AssumeRole):

mode: multi

accounts:
  - id: "111122223333"
    name: dev
    role_arn: arn:aws:iam::111122223333:role/ArgusSpokeRole
  - id: "444455556666"
    name: prod
    role_arn: arn:aws:iam::444455556666:role/ArgusSpokeRole

GCP (one scan per project, ADC handles auth):

mode: multi

projects:
  - id: my-project-dev
    name: dev
  - id: my-project-prod
    name: production

Or set GCP_PROJECT_IDS=my-project-dev,my-project-prod instead.

Azure (cross-subscription via Resource Graph):

mode: multi

subscriptions:
  - id: "aaaabbbb-cccc-dddd-eeee-ffffffffffff"
    name: dev
  - id: "11112222-3333-4444-5555-666677778888"
    name: production

Or set AZURE_SUBSCRIPTION_IDS=sub-1,sub-2 instead.

Then run:

argus scan --cloud aws --accounts accounts.yaml
argus scan --cloud gcp --accounts accounts.yaml
argus scan --cloud azure --accounts accounts.yaml

IAM permissions (AWS)

Argus needs read-only access. The Lambda execution role requires:

resource-explorer-2:Search
resource-explorer-2:GetView
cloudwatch:GetMetricData
ce:GetCostAndUsage
ce:GetCostAndUsageWithResources
cloudtrail:LookupEvents
bedrock:InvokeModel          # only if AI_PROVIDER=bedrock
sts:AssumeRole               # only for multi-account mode
s3:PutObject                 # only if REPORT_S3_BUCKET is set

No write permissions are ever requested.

Cost Explorer note: GetCostAndUsageWithResources requires resource-level cost allocation to be enabled in AWS Cost Management โ†’ Preferences โ†’ Resource-level data. If not enabled, Argus logs a warning and continues โ€” cost fields will show $0.00.


IAM permissions (GCP)

Argus needs read-only access. The service account (argus-sa@PROJECT.iam.gserviceaccount.com) requires:

cloudasset.assets.listAssets        # list all resources (Asset Inventory API)
monitoring.timeSeries.list          # read CPU / memory / request metrics
monitoring.metricDescriptors.list   # discover available metric types
logging.logEntries.list             # read Cloud Audit Logs for last-activity timestamps
bigquery.jobs.create                # only if BILLING_BQ_TABLE is set
bigquery.tables.getData             # only if BILLING_BQ_TABLE is set
aiplatform.endpoints.predict        # only if AI_PROVIDER=vertexai (default)
storage.objects.create              # only if REPORT_GCS_BUCKET is set
storage.objects.get                 # only if REPORT_GCS_BUCKET is set
iam.serviceAccounts.signBlob        # only if REPORT_GCS_BUCKET is set

No write permissions are ever requested.

The deploy script binds roles/cloudasset.viewer, roles/monitoring.viewer, and roles/logging.viewer automatically. For a tighter permission surface, create a custom role using only the exact permissions above โ€” see GCP deployment docs for the one-command setup.

BigQuery note: without BILLING_BQ_TABLE, cost fields show $0.00 โ€” resource discovery and idleness detection still work via metrics and audit logs.


IAM permissions (Azure)

Argus needs read-only access. The Managed Identity requires:

Microsoft.ResourceGraph/resources/action                              # list all resources (Resource Graph KQL)
Microsoft.Insights/metrics/read                                       # read CPU / memory / request metrics
Microsoft.Insights/metricDefinitions/read                             # discover available metric types
Microsoft.Insights/eventtypes/management/values/read                  # Activity Log fallback for last-activity
Microsoft.CostManagement/query/action                                 # run cost queries
Microsoft.CostManagement/*/read                                       # read cost data
Microsoft.OperationalInsights/workspaces/query/read                   # only if logAnalyticsWorkspaceId is set
Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write # only if reportStorageAccount is set
Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read  # only if reportStorageAccount is set

No write permissions are ever requested.

The built-in Reader + Cost Management Reader roles cover all required actions per subscription. For a tighter permission surface, create a custom role using only the exact actions above โ€” see Azure deployment docs for the one-command setup.

Cost Management note: Reader covers */read but cost queries use a query/action verb. Cost Management Reader must be added separately โ€” without it, cost fields show $0.00.


Limitations & known issues

Before you invest time deploying Argus, know what it can't do yet:

Area Status Details
Resource discovery All three strong AWS covers 43 resource types via Resource Explorer. GCP covers 31 asset types via Asset Inventory. Azure discovers all types via Resource Graph with 40 having curated metric mappings. All three fall back to dynamic metric auto-discovery for unmapped types. AWS has the deepest per-type metric coverage; GCP and Azure are catching up.
Cost accuracy Best-effort AWS Cost Explorer charges $0.01/API call โ€” Argus batches aggressively (max 2 calls/scan). GCP requires BigQuery billing export enabled. Azure cost data depends on subscription-level access. Resource-level cost allocation must be enabled in AWS for per-resource costs; without it, costs show $0.00.
AI non-determinism By design The AI decides what's idle โ€” different runs may produce slightly different findings or reasoning. Set AI_TEMPERATURE=0.0 (default) for most consistent results.
LLM cost Configurable A full scan of ~200 resources costs ~$0.05โ€“$0.50 in LLM API fees depending on provider. Use --llm-budget to set a hard cap (default: $2.00/scan). Large estates (1000+ resources) will hit the budget limit โ€” increase it or use --max-resources.
AWS Resource Explorer setup Manual step You must enable Resource Explorer with an aggregator index (typically in us-east-1). Without this, Argus cannot discover resources. This is a one-time setup but is easy to miss.
Write actions None Argus is read-only. It reports findings but never deletes, stops, or modifies resources. Remediation is manual.
Multi-cloud in one scan Not yet Each argus invocation scans one cloud. Use the merge report feature (core/reports/multi_cloud.py) to combine results after separate runs.
Notifications Slack + Teams + webhook No email. Slack/Teams delivery requires a webhook URL.

Multi-cloud maturity

AWS has the richest experience โ€” it was developed first, has the most resource types with curated metric mappings, and has a mature multi-account hub/spoke deployment model. GCP and Azure are fully functional but the AWS adapter has been battle-tested more extensively. Cost data depth also varies: AWS Cost Explorer with resource-level allocation is the most reliable, GCP requires BigQuery billing export to be configured, and Azure Cost Management depends on subscription-level access. All three clouds have dynamic metric fallback for unmapped resource types, so even uncurated types get some signal.

Multi-cloud parity

Capability AWS GCP Azure
Resource discovery 43 types (Resource Explorer) 31 types (Asset Inventory) All types (Resource Graph)
Metrics CloudWatch (43 types + fallback) Cloud Monitoring (31 types + fallback) Azure Monitor (40 types + fallback)
Cost data Cost Explorer (batched) BigQuery billing export Cost Management API
Last activity CloudTrail (90-day lookback) Cloud Audit Logs Activity Log / Log Analytics
Deployment Lambda (SAM) Cloud Run Job Azure Function (Bicep)
Multi-account Hub/spoke with STS Multi-project (per-project scan) Cross-subscription via Resource Graph
Secret management Secrets Manager Secret Manager Key Vault

Running tests

make test                  # unit tests only (528 tests, no cloud creds needed)
make test-integration      # integration tests (32 tests โ€” adapter contracts, report schema)
make test-all              # everything (560 tests)

Tests use unittest.mock throughout โ€” no real AWS/GCP/Azure calls are made.


Project structure

argus/
โ”œโ”€โ”€ core/                  # Pure Python โ€” no cloud imports
โ”‚   โ”œโ”€โ”€ agent/loop.py      # ReAct agent loop
โ”‚   โ”œโ”€โ”€ agent/prompts.py   # System prompt + tool schemas
โ”‚   โ”œโ”€โ”€ models/finding.py  # ResourceFinding dataclass
โ”‚   โ””โ”€โ”€ reports/           # Report generator, multi-cloud merge, export, notifications
โ”œโ”€โ”€ adapters/
โ”‚   โ”œโ”€โ”€ base.py            # CloudAdapter abstract class
โ”‚   โ”œโ”€โ”€ aws/               # AWS adapter (Resource Explorer, CloudWatch, Cost Explorer, CloudTrail)
โ”‚   โ”œโ”€โ”€ gcp/               # GCP adapter (Asset Inventory, Cloud Monitoring, BigQuery, Audit Logs)
โ”‚   โ””โ”€โ”€ azure/             # Azure adapter (Resource Graph, Monitor, Cost Management, Activity Log)
โ”œโ”€โ”€ ai/
โ”‚   โ”œโ”€โ”€ base.py            # AIProvider abstract class
โ”‚   โ”œโ”€โ”€ anthropic.py       # Anthropic API (local dev / universal fallback)
โ”‚   โ”œโ”€โ”€ bedrock.py         # AWS Bedrock (Converse API)
โ”‚   โ”œโ”€โ”€ vertexai.py        # Vertex AI / Gemini (GCP)
โ”‚   โ””โ”€โ”€ azure_openai.py    # Azure OpenAI / GPT-4o (Azure)
โ”œโ”€โ”€ entrypoints/
โ”‚   โ”œโ”€โ”€ cli.py             # argus --cloud aws --run-now
โ”‚   โ”œโ”€โ”€ aws_lambda.py      # AWS Lambda handler
โ”‚   โ”œโ”€โ”€ gcp_cloudrun.py    # GCP Cloud Run Job handler
โ”‚   โ””โ”€โ”€ azure_function.py  # Azure Function timer trigger
โ”œโ”€โ”€ deploy/
โ”‚   โ”œโ”€โ”€ aws/               # CloudFormation templates
โ”‚   โ”œโ”€โ”€ gcp/               # Cloud Run + Scheduler deploy script
โ”‚   โ””โ”€โ”€ azure/             # Bicep templates
โ””โ”€โ”€ tests/                 # 560 tests, all pass offline

Contributing

See CONTRIBUTING.md.


License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

argus_cloud_optimizer-0.4.0.tar.gz (155.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

argus_cloud_optimizer-0.4.0-py3-none-any.whl (120.1 kB view details)

Uploaded Python 3

File details

Details for the file argus_cloud_optimizer-0.4.0.tar.gz.

File metadata

  • Download URL: argus_cloud_optimizer-0.4.0.tar.gz
  • Upload date:
  • Size: 155.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for argus_cloud_optimizer-0.4.0.tar.gz
Algorithm Hash digest
SHA256 e6dec8a5e139e360906616e42a487eb6624dd6af70ff50e31bb5a04e7dad1a61
MD5 e5b69baf68dd6d8232f5c1ff70aa89bc
BLAKE2b-256 68767f68e13e5b7128e1905e1e7fd038171a841642361a0e2721675c935eb4e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_cloud_optimizer-0.4.0.tar.gz:

Publisher: publish.yml on vamshisiddarth/argus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argus_cloud_optimizer-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for argus_cloud_optimizer-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 df11c28d65b2995d4dace85d9ddac19ef8d8c0a312c516d1127bd986393b3f2d
MD5 dc4fa9882dcbaff95c4b6f845514c6ce
BLAKE2b-256 b337f9ed56369bb629d7a4281c0d150d34d10d6aeebf9a1b542960c735c03401

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_cloud_optimizer-0.4.0-py3-none-any.whl:

Publisher: publish.yml on vamshisiddarth/argus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page