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

Поділитися
Вставка
  • Опубліковано 23 лип 2022
  • - #Learn #Terraform in easy manner with #AWS
    - Create AWS VPC and related components using Terraform
    - Learn how to write Terraform code from scratch
    ▶️ Download the code file - temp-ki-bucket.s3.amazonaws.c...
    ▶️ Terraform Playlist - • Learn Terraform Practi...
    ▶️ Terraform Installation STEPS - learn.hashicorp.com/tutorials...
    ▬▬▬ R E L A T E D V I D E O S ▬▬▬
    1️⃣ Why is IaC important for your organization - • Why is Infrastructure ...
    2️⃣ Comparison of different IaC tools - • How to SELECT the righ...
    _______________
    ✌️ 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).
    👉 Join our Hands-on CLOUD TRAINING - www.knowledgeindia.in/p/hands...
    👉 Connect with us for CLOUD CONSULTING requirements. Best way is to connect on LinkedIn and send a direct message.
    👉 Become a UA-cam Channel Member and get many benefits - www.knowledgeindia.in/p/membe...
    ☕ Buy me a Coffee - ko-fi.com/knowledgeindia
    ▬▬▬ 🔰 L E A R N I N G C L O U D ⤵️ ▬▬▬
    1️⃣ Subscribe to KI UA-cam Channel - ua-cam.com/users/knowledgeindi...
    2️⃣ Receive email alerts - bit.ly/ki-google-group
    3️⃣ Join our LinkedIn Group - bit.ly/ki-linkedin-group
    4️⃣ Join UA-cam MEMBERSHIP - / @knowledgeindia
    5️⃣ Launch your CLOUD CAREER - www.knowledgeindia.in/p/launc...
    6️⃣ All our Video Tutorials - www.youtube.com/@knowledgeind...
    7️⃣ Guidance on Cloud Certification - • 5 TIPS to CHANGE JOB w...
    8️⃣ Hands-on AWS Training - www.knowledgeindia.in/p/hands...
    ▬▬▬ P O P U L A R V I D E O S ▬▬▬
    👉 • AWS - VPC Demo, Public...
    👉 • AWS Storage - S3 vs EB...
    👉 • AWS Security - IAM (Pa...
    👉 • AWS Cloud Architect In...
    👉 • AWS ECS Part-1 | ECS C...
    👉 • AWS Databases - Differ...
    👉 • AWS CloudFormation DEM...
    ▬▬▬ V I D E O P L A Y L I S T S ▬▬▬
    👉 AWS for Beginners: • AWS Tutorials for Begi...
    👉 Containers on AWS: • Containers on AWS - EC...
    👉 Cloud JOBS Interview Series: • Cloud Architect Interv...
    👉 LIVE Sessions - Q&A: • AWS Interview Question...
    👉 AWS Security: • AWS Security Videos |...
    👉 AWS Networking: • AWS VPC & Networking -...
    👉 AWS Pricing: • AWS Pricing - Cost Opt...
    👉 AWS Automation: • AWS Automation Videos
    👉 AWS SysOps Administrator: • AWS SysOps Administrat...
    👉 AWS Solutions Architect: • AWS Solutions Architec...
    👉 Enterprise Use-cases: • Enterprise Use-case Se...
    👉 Azure - Learn from Basics: • AZURE - Learn from Bas...
    👉 Meeting Cloud Professionals: • Interview with CLOUD P...
    ✅ Check all our playlists here: www.knowledgeindia.in/p/all-a...
    ▬▬▬ L I N K S ▬▬▬
    ▶️ LINKEDIN - bit.ly/ki-linkedin
    ▶️ TWITTER - bit.ly/ki-twitter
    ▶️ QUORA - bit.ly/ki-quora
    ▶️ TWITCH - bit.ly/ki-twitch
    ▶️ BLOG - www.knowledgeindia.in/
    👆 We try our best to answer most of the COMMENTS. Please write your appreciation/feedback/questions in the comments section below. ✌️

КОМЕНТАРІ • 4

  • @sujoydipadas7810
    @sujoydipadas7810 Рік тому +1

    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.

  • @rajcp123
    @rajcp123 Рік тому +1

    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..

    • @knowledgeindia
      @knowledgeindia  Рік тому

      Please check the videos in our automation playlist

  • @vinaymenon5411
    @vinaymenon5411 Рік тому

    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