Azure DevOps is a Microsoft product which provides version control, project management, automated builds, lab management, testing and release management,Code repository capabilities. It covers the application life-cycle and enables DevOps capabilities. Organizations using Azure DevOps allow users to login and perform different job roles including manage repositories, work items, perform build and release management etc….
Tag: Azure
Azure AD application Certificate expiration report
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….
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…
Add custom field to Azure DevOps Work item type
Azure DevOps is Microsoft provided service to provide version control, reporting, project management, build and release management service. It can be Azure hosted (online) or on-premise. It covers the entire application cycle and enables DevOps capabilities. Check Microsoft documentation to learn more about Azure DevOps. Recently I was working on a Project to write some…
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…
Move Azure VM to another Subscription using Powershell
Update : updated script to support Azure Az powershell module. You may have come across situations where you want to move an Azure VM from one Resource Group to another. Sounds familiar, right? Luckily, Microsoft has provided a very cool and easy wizard based tool through the Azure Portal. Refer here for more information on…
Complete Azure SQL Database inventory
Update : updated script to support Azure Az powershell module. Azure SQL Database is a general-purpose relational database managed service. It enables creation of highly-available and high-performance data storage layer for the applications and solutions in Microsoft Azure cloud. With Microsoft’s cloud-first strategy, the newest capabilities of SQL Server are released first to SQL Database,…