A simple utility written in Rust to pull useful virtual machine info from a configured Azure tenant using the Azure Resource Graph APIs
The instructions to install assume you have the rust toolkit installed. You can install them using rustup
bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
bash
cargo install azure-vminfo
```bash
git clone https://github.com/SystemFiles/azure-vminfo.git && cd ./azure-vminfo
cargo install --path . ```
``` A simple utility written in Rust to pull useful virtual machine info from a configured Azure tenant using the Azure Resource Graph APIs
Usage: vminfo [OPTIONS] [vmnameor_regexp]...
Arguments: [vmnameor_regexp]... Specifies one or more VM name(s) or a regular expression to match VM(s)
Options: --login Specifies whether to prompt for credentials manually (will exit) -r, --match-regexp Specifies whether or not to enable regexp matching -e, --extensions Specifies whether or not to display Azure extensions for each VM -h, --help Print help information ```