DevOps Classroom notes 14/Jun/2025

Terraform meta arguments

  • lifecycle: This has two arguments
    • prevent_destroy
    • create_before_destroy
resource "aws_vpc" "nop" {
  cidr_block           = "10.10.0.0/16"
  enable_dns_hostnames = true
  enable_dns_support   = true
  tags = {
    "Name" = "nop-vpc-dev"
  }
  lifecycle {
    prevent_destroy = true
    create_before_destroy = true
  }
}

AKS-store Deployment

  • Refer Here for aks store
  • To deploy this application we need a kubernetes cluster
  • Lets understand how to create a kubernetes cluster on Azure (AKS)
  • Refer Here for steps to create AKS cluster
  • Refer Here for the changes done to create aks cluster with kubeconfig.

Published
Categorized as Uncategorized Tagged

By continuous learner

devops & cloud enthusiastic learner

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Please turn AdBlock off
Animated Social Media Icons by Acurax Responsive Web Designing Company

Discover more from Direct DevOps from Quality Thought

Subscribe now to keep reading and get access to the full archive.

Continue reading

Visit Us On FacebookVisit Us On LinkedinVisit Us On Youtube