Update : updated script to support Azure Az powershell module. It is always great to have a script handy which will produce a quick azure resource inventory for your azure subscription. It may not contain all properties of azure resource types, however, just provide you information about the resource type, resource name, resource group etc….
Tag: inventory
Complete VMware inventory using Powershell
Today, I am going to share a script, which personally used a lot, not only as a standalone script, but, in conjunction with other scripts in a workflow to generate multiple CSV files of our VMware environment globally. After that, pass CSV files to next script to ingest in my SQL Database inventory system. Once…
AWS ELB complete inventory using Powershell
Following definition of Amazon Elastic Load Balancing is taken from AWS documentation for ELB. Refer here for more information – “Elastic Load Balancing automatically distributes incoming application traffic across multiple targets, such as Amazon EC2 instances, containers, IP addresses, and Lambda functions. It can handle the varying load of your application traffic in a single…
AWS EC2 complete inventory using Powershell
Following definition of Amazon EC2 instance is taken from AWS documentation. Please refer here for more information – “Amazon Elastic Compute Cloud (Amazon EC2) provides scalable computing capacity in the Amazon Web Services (AWS) cloud. Using Amazon EC2 eliminates your need to invest in hardware up front, so you can develop and deploy applications faster….
AWS Elastic IP Address complete inventory using Powershell
Amazon Elastic IP address is static IPV4 Address in aws account. Any back-end failure of instance or software can be remapped with another instance or software by keeping same IP address. Refer here for more information about aws Elastic IP Address. Following script generates inventory of EIP in an aws account. It assumes, you have…