aws-assume-role 1.3.1

Simple CLI tool to easily switch between AWS IAM roles across different accounts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod aws;
mod cli;
mod config;
mod error;

use error::AppResult;

#[tokio::main]
async fn main() -> AppResult<()> {
    // Initialize logging
    tracing_subscriber::fmt::init();

    // Run the CLI
    cli::Cli::run().await
}