Update : updated script to support Azure Az powershell module. Once we register an Application with Azure AD, we configure Secrets or Certificates or sometimes both. This is required to set up application authentication and authorization, Sign-On or OAuth authorization service etc. The secret or the certificate we set on the application has an expiry….
Tag: Powershell
Apply Tags on Azure resources
Update : updated script to support Azure Az powershell module. In my previous blog, I talked about benefits of tagging and how to tag resource groups using powershell. A script was also provided with some standard example tags – like, Environment, Budget Category, Application etc. Let’s keep on working on the same situation like last…
Apply tags on Azure Resource Groups using powershell
Update : updated script to support Azure Az powershell module. Many of you can relate to a situation when you have a large cloud environment to manage with hundreds or thousands of resources, however, no way to organize them as those were not set up with proper naming convention or tagging . Tagging is one…
Azure AD application Client Secret expiration report
Update : updated script to support Azure Az powershell module. Azure AD Application is an identity with some configurations on cloud. When you register an Azure AD application in Azure portal , two objects are created in your Azure AD Tenant : An application object A service principal object Application object An Azure AD application…
AWS Services Cost and Usage report
In my previous blog I wrote about AWS EC2 cost and usage report using AWS SDK for powershell. It was just for EC2 instances as obviously EC2 instances are one of main contributor to our AWS bill every month. However, we also wanted to have a cost and usage report for all deployed resource types…
AWS EC2 Cost and Usage report
AWS provides a nice service called Cost Explorer to generate different AWS expense reports based on different filters and time range. It has a very easy to use interface to visualize cost and usage data through graphs as well as raw CSV data. You may refer AWS documentation to know how to use Cost Explorer…
Update Azure Storage Account Access Tier
Update : updated script to support Azure Az powershell module. Azure storage accounts is Microsoft’s durable, highly available, scalable and secure storage solution on cloud. It helps storing flat files, media object, images, binary executable etc. in cloud. Storage accounts come in different types and access tiers. Refer Microsoft documentation for detailed information on different…
Azure unmanaged disks status complete report
Update : updated script to support Azure Az powershell module. Azure Unmanaged disk is a Microsoft provided Virtual machine disk solution. However, this is not in use so much now-a-days since the introduction of Managed disk. With unmanaged disk, you have to create a Storage Account to store the disk files (VHDs) as Blobs and…
Service Now Change Management using Powershell
In previous post, I talked about Service Now Incident management using Powershell. In this blog, I am going to talk about Change management using Powershell with an example. Again, the scenario remains the same, still trying to automate a lot of stuff and this time leveraging Service Now Change management. In one of my previous…
Service Now Incident Management using Powershell
IT Incident Management using Service Now tool is very common in most organizations now-a-days. Service Now is one of leading ITSM tool available in market. Few months back, I was tasked with automating some of our Service administration process.While automating server process of server administration, I started exploring options to automate Incident management using Powershell….