Lab #2: How to Use Visual Studio code for Terraform | Creating EC2 Instance using Terraform

preview_player
Показать описание
How to Use Visual Studio code for Terraform | Creating EC2 Instance using Terraform | Install Terraform on Windows | Install AWS CLI on WIndows
#terraformtutorial #creatingec2instanceusingterraform

0:00 Introduction
1:10 Install Terraform on Windows 10
4:02 Download VS code for Windows
4:43 Install Terraform extension in VS code
5:24 Download and Install AWS CLI on Windows 10
8:01 Create IAM user in AWS
11:52 configure IAM user in VS Code
12:45 Creating EC2 Instance using Terraform
18:41 Terminate EC2 Instance using Terraform

Follow below article for step by step guide

provider "aws" {
region = "region"
}
resource "aws_instance" "Demo" {
ami = "instance_id"
instance_type = "instance_type"
key_name = "key_name"
tags = {
Name = "instance_name"
}
}

Related Articles:
1) Setup Kubernetes Cluster using KOPS
2) How to Create Namespace, Role Binding and Service Account in Kubernetes
3) Configure Traefik Ingress Controller on Kubernetes | traefik ingress Kubernetes
Configure Traefik Ingress Controller on Kubernetes | traefik ingress Kubernetes
4) Kubernetes Replica Set vs Replication Controller | Kubernetes Replication Practical Demonstration
5) How to Create Kubernetes Cluster using Kubeadm on Ubuntu | Setup Kubernetes Cluster using Kubeadm
6) How to Install Nginx Ingress Controller on Kubernetes KOPS using Helm 3
7) Install Traefik Ingress Controller on Kubernetes using Helm 3 | Traefik Ingress Kubernetes helm
8) Kubernetes Nginx Ingress Controller Let's Encrypt | https on Kubernetes Nginx Ingress contoller

If you likes our video, please subscribe our channel on YouTube Channel
Рекомендации по теме
Комментарии
Автор

Best tutorial I came across for Terraform setup in Windows with Visual studio code...Content Delivery by instructor is clear and accurate...Thanks for sharing.

shivdaskanade
Автор

Your tutorial was really informative, thanks for sharing your knowledge.🎉
I appreciate your patience and clarity in explaining this concept ❤

azeembasha
Автор

Thank you very much. Your video is very clear and straigh to the point. Very helpful. Appriciate your efforts and time.

bharunkumar
Автор

Thank you very much. Much clear and simple !! Keep it up.

upekakarunadhipathi
Автор

Ever never seen like this explanation, great, awesome and informative for beginners understand.Thank you sir

sravanthimateti
Автор

I appreciate this detailed set of tutorials. thank you

praisesupastar
Автор

Thanks a ton.. An excellent explanation

dideepakindorkar
Автор

This is the best tutorial and very easy to understand. Excelent and great work.

yuding
Автор

appreciate the video. easy to follow lab, Thanks

luc
Автор

I am trying since morning to connect it... you are the best ...

AzamUsmani
Автор

We need to keep this guy safe 😂 such a gem 🖤

Classiq
Автор

great video sir ... i am struggling to install terraform in VC.. this video has helped a lot.. Thank you

takumarkumar
Автор

excellent . Thank you so much . Best video on Terraform☺☺

itishreenayak
Автор

Thank you a lot. Your explanation is so detailed and clear. Big respect!

azadjahangirov
Автор

Thank u so much very useful thanks a lot..

chalapathichala
Автор

Hey Devops Hint, Great video to have a hands on, Just one has to follow and simulate to gain practicse.
Thanks again!

amitakhamkar
Автор

thanks for your help, cool your class! Very easy and not complicated, your explication...

Автор

Thanks for creating this video I was facing issue with the setup f terraform on Vscode and you solve it....

vv
Автор

big thanks bro i was unable to setup and integrate tq soo much

ramreddy
Автор

If you get the following error: "Terraform initialized in an empty directory!"

You need to cd into the /terraform/ directory. In the VS Coder Terminal type "cd terraform" enter. Then try running terraform init again.

PatrickHaley