by infra xpertzz | Jan 6, 2022 | Terraform
In this post, we will see how to restore a RDS using the latest snapshot in AWS We will use 3 configuration files in here. 1. Generic-varibles.tf #Input Variables #AWS Region variable “aws_region” { description = “Region in which AWS Resources will...
by infra xpertzz | Dec 21, 2021 | Terraform
In this post, we will create Multi AZ RDS using Terraform RDS Engine/Version : MySQL 5.7 We will also see how to provide an existing VPC security group using Terraform while creating the RDS. We will just post the configuration files over here. For more details,...
by infra xpertzz | Nov 27, 2021 | Terraform
Here we are going to implement how to dynamically get the latest AMI ID from AWS using Terraform Datasource concept and then create the EC2 Instance. We will also create 2 resources which is nothing but VPC-SSH and VPC-Web security group resources so that those can be...
by infra xpertzz | Nov 27, 2021 | Terraform
Terraform Provider Block # Terraform Block terraform { required_version = “~> 1.0.11” required_providers { aws = { source = “hashicorp/aws” version = “~> 3.0” } } } #Provider Block provider “aws” { region =...
by infra xpertzz | Nov 27, 2021 | Terraform
Terraform Settings block terraform { #required Terraform Version required_version = “~> 1.0.11” #Required Providers and their versions required_providers { aws = { source = “hashicorp/aws” version = “~> 3.21” } } #Remote...