Microsoft Azure - Automatically Manage Azure Blobs Lifecycles Last Updated : 30 Mar, 2023 Comments Improve Suggest changes 1 Likes Like Report In this article, we will look into how to automatically manage Azure Blobs lifecycles. Azure Blob Storage offers different access tiers to reduce your storage costs. A blob in the hot tier costs the most and can be accessed very fast, while a blob in the archive tier is cheaper and is slower. Implementation: Follow the below steps to automatically manage Azure Blobs lifecycles: Let's use Lifecycle Management to automatically move blobs between access tiers. Here in the Azure Portal, we have a general-purpose Azure Storage account, and there is the Lifecycle Management. We can create a new rule here. First, we need to give the rule a name, and now we will select to only apply this rule to blobs that adhere to a filter that we define later, and we only want "Block blobs". We will leave this to "Base blobs".But, as you will see, we can also include snapshots and versions of blobs. Next, now for the rule. If the base blobs were last modified more than 20 days ago, then we will move the blobs to cool storage. As you will see, we can also delete them if we want. Now, the filter. We only want this rule to apply to blobs in the logs container. Let's add the rule and there it is. Azure Blob Storage access tiers are great to reduce your storage costs. We just learned how easy it is to use Azure Blob Storage Lifecycle Management to automatically move blobs to their appropriate access tiers based on their usage. Create Quiz Comment P punamsingh628700 Follow 1 Improve P punamsingh628700 Follow 1 Improve Article Tags : Microsoft Azure Geeks Premier League DevOps Geeks-Premier-League-2022 Explore DevOps BasicsWhat is DevOps ?6 min readDevOps Lifecycle10 min readThe Evolution of DevOps - 3 Major Trends for Future7 min readVersion ControlVersion Control Systems5 min readMerge Strategies in Git4 min readWhich Version Control System Should I Choose?5 min readCI & CDWhat is CI/CD?7 min readUnderstanding Deployment Automation4 min readContainerizationWhat is Docker?8 min readWhat is Dockerfile Syntax?5 min readOrchestrationKubernetes - Introduction to Container Orchestration4 min readFundamental Kubernetes Components and their role in Container Orchestration12 min readHow to Use AWS ECS to Deploy and Manage Containerized Applications?4 min readInfrastructure as Code (IaC)Infrastructure as Code (IaC)7 min readIntroduction to Terraform15 min readWhat is AWS Cloudformation?14 min readMonitoring and LoggingWorking with Prometheus and Grafana Using Helm5 min readWorking with Monitoring and Logging Services5 min readMicrosoft Teams vs Slack4 min readSecurity in DevOpsWhat is DevSecOps: Overview and Tools10 min readDevOps Best Practices for Kubernetes11 min readTop 10 DevOps Projects with Source Code [2025]8 min read Like