DevOps, Day - 64
Terraform with AWS

💻 Python | Docker | Jenkins | Networking | Git | Linux 💻
Passionate about leveraging technology to drive efficiency and deliver innovative solutions. Proficient in Python development, Docker containerization, Jenkins automation, computer networking, Git version control, and Linux administration. Skilled in collaborating with diverse teams to deliver high-quality software products. Proficient in AWS EC2 instance management and deployment.
Seeking new opportunities to apply my expertise and contribute to impactful projects. Let's connect and explore how we can work together!
Inter-personal Skills:
Communication, Adaptability, Emotional intelligence, Active listening, Collaboration.
Happy To Connect🔗😊
Feel free to reach me out😃@ --> vrishnishreevb531@gmail.com 📬

Create a main.tf file and add the following Terraform configuration
provider "aws" {
region = "us-east-1" # Change to your desired region
}
resource "aws_instance" "aws_ec2_test" {
ami = "ami-08c40ec9ead489470" # Change to your desired AMI
instance_type = "t2.micro"
tags = {
Name = "TerraformTestServerInstance"
}
}

Initialize and Apply
terraform init

Check AWS Credentials
aws configure

Refresh AWS Credentials
aws sts get-caller-identity

Now again execute the below commands
terraform init

terraform apply


Thank you so much for reading
Follow me on LinkedIn to see interesting posts like this : )




