Part 5 - Creating AWS VPC from scratch using Terraform- Learn Terraform Practically with AWS Series

preview_player
Показать описание
- #Learn #Terraform in easy manner with #AWS
- Create AWS VPC and related components using Terraform
- Learn how to write Terraform code from scratch

▬▬▬ R E L A T E D V I D E O S ▬▬▬
_______________

✌️ KnowledgeIndia is an initiative to teach Cloud and related technologies in an easy & practical manner. We believe in jargon-free discussion.
KnowledgeIndia is an initiative to teach Cloud and related technologies to professionals in an easy & practical manner.

👍 There are many videos on our channel through which you can learn Cloud for free. If you find our videos helpful, then please share it & help others as well. If you would like to be part of this initiative, connect with us and send a message (links given below).

👉 Connect with us for CLOUD CONSULTING requirements. Best way is to connect on LinkedIn and send a direct message.

▬▬▬ 🔰 L E A R N I N G C L O U D ⤵️ ▬▬▬

▬▬▬ P O P U L A R V I D E O S ▬▬▬

▬▬▬ V I D E O P L A Y L I S T S ▬▬▬

▬▬▬ L I N K S ▬▬▬

👆 We try our best to answer most of the COMMENTS. Please write your appreciation/feedback/questions in the comments section below. ✌️
Рекомендации по теме
Комментарии
Автор

amazing videos indeed. another gem after me following your ecs tutorials. just wanted to check if you have any plans to publish python tutorials specifically for people working on aws cloud area - not hard core coders..

rajcp
Автор

Thank you so much, your videos are very useful in building concepts and practice. Please make some more videos with high level architecture coding in terraform generally used in industry.

sujoydipadas
Автор

Hi I have installed terraform and visual studio code also I have installed the terraform extension for vs.

But I am facing issue when I try to write a code it does not provide auto suggestions like if I select something for example required_providers and press enter and then provide a name like aws and press enter I get below context

terraform {
required_version = "~> 1.1.9"
required_providers {
aws = {

}
}

it should actually show something like the example shown below this "source" and "version" should automatically show as auto mapped pre context in inverted commas
terraform {
required_version = "~> 1.1.9"
required_providers {
aws = {
source = "value"
version = "value"
}
}
Any idea what is causing it. I tried removing and reinstall vscode, reinstalled terraform extension I even deleted terraform application and downloaded new setup. But same issue. if you know what the issue is can you please help me

vinaymenon