Crafted by Jhooq
open-menucloseme
Home
Ansible
Kubernetes
Terraform
YouTube
Learn
About
Contact
English Português
githubtwitterlinkedinrss
  • Why you should not store terraform state file(.tfstate) inside Git Repository?

    calendarDec 27, 2022 · 5 min read  ·
    Last Modified : Dec 27, 2022
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    Why you should not store terraform state file(.tfstate) inside Git Repository?

    It is generally not recommended to commit .tfstate files to Git or any other version control system. .tfstate files contain sensitive information about the infrastructure managed by Terraform, including the current state of resources and the configurations used to create them. If these files are committed to version …


    Read More
  • How to import existing resource using terraform import comand?

    calendarDec 23, 2022 · 8 min read  ·
    Last Modified : Dec 23, 2022
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    How to import existing resource using terraform import comand?

    To import an existing infrastructure resource into Terraform, you can use the terraform import command. This command allows you to take an existing resource that was created outside of Terraform and bring it under Terraform management. In this blog, we will take two examples - How to import EC2 Instance? How to import …


    Read More
  • Terraform - A detailed guide on setting up ALB(Application Load Balancer) and SSL?

    calendarDec 20, 2022 · 5 min read  ·
    Last Modified : Dec 20, 2022
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    Terraform - A detailed guide on setting up ALB(Application Load Balancer) and SSL?

    Why do we need an SSL Certificate for an Application Load Balancer (ALB) in AWS? SSL certificates are used to establish secure connections between clients and servers over the internet. They are particularly important for protecting sensitive information, such as login credentials or financial data, when it is …


    Read More
  • Testing Infrastructure as Code with Terraform?

    calendarDec 13, 2022 · 6 min read  ·
    Last Modified : Dec 13, 2022
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    Testing Infrastructure as Code with Terraform?

    Testing infrastructure as code (IaC) involves verifying the functionality and behavior of the code used to manage and provision infrastructure in a cloud environment. IaC allows organizations to automate the provisioning and management of their infrastructure, which can improve efficiency, reduce errors, and enable …


    Read More
  • How to remove a resource from Terraform state?

    calendarDec 12, 2022 · 4 min read  ·
    Last Modified : Dec 12, 2022
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    How to remove a resource from Terraform state?

    To remove a resource from the Terraform state, you can use the $ terraform state rm command. This command allows you to remove resources from the Terraform state file.

    1. How to remove a single resource from terraform state file? Here are the steps which you should follow before you remove any resource - List the …


    Read More
  • What is Terraform null Resource?

    calendarDec 9, 2022 · 7 min read  ·
    Last Modified : Jun 19, 2023
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    What is Terraform null Resource?

    Terraform null_resource is one of the features which is underused by the DevOps professional. When I looked at Terraform's documentation for null_resource I felt they have not put much effort into explaining null_resource in more detail. But when I tried the null_resource by myself I really felt to use it more often …


    Read More
  • In terraform how to skip creation of resource if the resource already exist?

    calendarDec 7, 2022 · 4 min read  ·
    Last Modified : Dec 7, 2022
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    In terraform how to skip creation of resource if the resource already exist?

    In a Terraform project there are situations where a Developer feels a need to pre-check if the resource exists or not and many times I also wondered if is it possible to check the existence of the resource to avoid the duplicity of the resource. In this blog, we are gonna see - Why it is not possible to decide …


    Read More
  • How to setup Virtual machine on Google Cloud Platform

    calendarNov 29, 2022 · 11 min read  ·
    Last Modified : Nov 29, 2022
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    How to setup Virtual machine on Google Cloud Platform

    Working on a cloud platform always sounds interesting but what if you have some framework where you can automate your cloud infrastructure. In this article, we are going to see How to set up your first Virtual Machine on Google Cloud The platform using Terraform This article is aimed at the beginner who is just …


    Read More
  • How to use Terraform locals?

    calendarNov 28, 2022 · 5 min read  ·
    Last Modified : Nov 28, 2022
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    How to use Terraform locals?

    In programming world we have concept of variables, similar to that in Terraform we also have concept of Terraform Locals. What is Terraform locals? Here is an very basic example code which show - "How to create locals in Terraform?" 1## Example of local with static value 23locals { 4my_local = …


    Read More
  • Terraform Guide - Docker Containers & AWS ECR(elastic container registry)?

    calendarSep 28, 2022 · 12 min read  ·
    Last Modified : Sep 28, 2022
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    Terraform Guide - Docker Containers & AWS ECR(elastic container registry)?

    Terraform is the most popular IaC(Infrastructure as Code) tool for provisioning your cloud infrastructure on AWS, GCP and Azure. Terraform capabilities are not limited to cloud infrastructure instead you can use Terraform for other container infrastructure provisioning also. In this blog post, we will take a look at …


    Read More
    • ««
    • «
    • 1
    • 2
    • 3
    • 4
    • 5
    • »
    • »»

Categories

TERRAFORM 63 DOCKER 28 KUBERNETES 26 AWS 15 ANSIBLE 11 HELM-CHART 11 BLOGGING 6 SSL 6 SPRING-BOOT 5 QUARKUS 4 GITHUB 3 KUBESPRAY 3 PROMETHEUS-GRAFANA 3 VAGRANT 3
All Categories

ANSIBLE11 AWS15 AZURE2 BLOGGING6 DEVOPS2 DOCKER28 GITHUB3 GRADLE1 HADOOP1 HELM-CHART11 HIBERNATE1 JENKINS2 KUBERNETES26 KUBESPRAY3 LINUX-COMMANDS1 NGINX2 PROMETHEUS-GRAFANA3 QUARKUS4 SPRING-BOOT5 SSL6 TERRAFORM63 VAGRANT3
[A~Z][0~9]

Series

TERRAFORM 61 DOCKER 28 KUBERNETES 27 ANSIBLE 11 HELM-CHART 11 AWS 4 AZURE 2 JENKINS 2 DEVOPS 1 LINUX-COMMANDS 1

Tags

KUBERNETES 18 HELM-CHART 10 BLOGGING 4 QUARKUS 4 DOCKER 3 GITHUB 3 SSL 3 KUBESPRAY 2 SPRING-BOOT 2 ANSIBLE 1 HADOOP 1 INDEX 1 NGINX 1 TERRAFORM 1

Recent Posts

  • AI Caught My Cloud Failure Before I Did
  • AWS API Gateway from Beginner to Expert ?
  • Azure Function App
  • Azure Virtual Machine Course
  • Learn AWS S3 ?
  • Ansible Handlers Explained Real-World Use Cases & Examples test
  • Securing Sensitive Data in Terraform
  • Boost Your AWS Security with Terraform : A Step-by-Step Guide

Rahul Wagh

Jhooq
Its all about Open Source and DevOps, here I talk about Kubernetes, Docker, Java, Spring boot and practices.
Read More


Copyright © 2019–2020, Jhooq; all rights reserved.

Copyright  COPYRIGHT © 2019–2020, JHOOQ; ALL RIGHTS RESERVED.. All Rights Reserved

to-top