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 ReplyCancel reply

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

Please turn AdBlock off
Social Media Icons Powered by Acurax Web Design Company

Discover more from Direct DevOps from Quality Thought

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

Continue reading

Exit mobile version
%%footer%%