added more access-maps

This commit is contained in:
Mick Grove 2026-02-19 18:19:20 -08:00
commit a9c5d8524f
10 changed files with 1071 additions and 38 deletions

View file

@ -5,7 +5,7 @@ use clap::{Args, ValueEnum};
/// Inspect a cloud credential and derive the effective identity and blast radius.
#[derive(Args, Debug)]
pub struct AccessMapArgs {
/// Cloud provider: aws | gcp | azure | github | gitlab | slack | postgres | mongodb | huggingface | gitea | bitbucket | buildkite | harness
/// Cloud provider: aws | gcp | azure | github | gitlab | slack | postgres | mongodb | huggingface | gitea | bitbucket | buildkite | harness | openai | anthropic | salesforce
#[clap(value_parser, value_name = "PROVIDER")]
pub provider: AccessMapProvider,
@ -53,4 +53,10 @@ pub enum AccessMapProvider {
Buildkite,
/// Harness
Harness,
/// OpenAI
Openai,
/// Anthropic
Anthropic,
/// Salesforce
Salesforce,
}