All in One Offer! | Access Unlimited Courses in any category starting at just $29. Offer Ends in:

Browse Library

  • Business Solutions
  • Become an Instructor
  • 0
    Shopping Cart

    Your Cart is empty. Keep shopping to find a course!

    Browse Courses
Get Unlimited Learning Access
$29
7 days left at this price!
30-Day Money-Back Guarantee

This plan includes

  • Instant access to 11,000+ online courses
  • Play & Pause Course Videos
  • HD Video Recorded Lectures
  • Learn on Mobile/PC/Tablet
  • Quizzes and Real Projects
  • Lifetime Course Certificate
  • Instructor Chat Support
  • Cancel Plan Anytime
Subscribe to Learnfly’s top courses
Get this course, plus 11,000+ of our top-rated courses for one year with Go Annually Plan.
$348 $244 a year Save 30%
7 days left at this price!
30-Day Money-Back Guarantee

This plan includes

  • Instant access to 11,000+ online courses
  • Play & Pause Course Videos
  • HD Video Recorded Lectures
  • Learn on Mobile/PC/Tablet
  • Quizzes and Real Projects
  • Lifetime Course Certificate
  • Instructor Chat Support
  • Cancel Plan Anytime
$29
$244
  • You'll learn how to isolate and control your own infrastructure with Terraform using Route Tables, Internet Gateways, Security Groups and Rules!
  • You'll learn how to launch Highly-Available, Scalable, Fault-Tolerant and Resilient EC2 Instances on AWS using Terraform!
  • You'll have very good understanding of VPC concepts like Subnets, Route Tables and Internet Gateways by putting all into real-world practice with Terraform code!
  • You'll be confident to work with AWS using Terraform for any kind of AWS Resource on VPC and EC2 Instances!
  • You'll learn how to read and code against an Terraform HCL language!

Learn to implement production-ready infrastructure with AWS and Terraform today with an AWS Certified Solutions Architect!
 
Do you want to implement your complete infrastructure as code? Do you want to learn the coolest and most popular infrastructure configuration management tool on the market, Terraform and make a huge contribution to your skillset?
 
Then this course is what you need! You will not only learn how to implement Terraform code but also implement an AWS Well-Architected Framework recommended deployment model which will be Highly-Available, Scalable, Fault-Tolerant and Resilient!
 
In this course, we will start by exploring the tools we need throughout the course. Just to note here too, we will need an IDE with a proper Terraform plugin available. An AWS account is also necessary so I will show you how to get one if you do not already have it. Sure we will set up our environment variables for Terraform deployments and also configure our IDE to use Terraform efficiently by installing a Terraform Plugin which will highlight the syntax and auto-complete everything we intend to do.
 
In between all these, I will also give you a crash course on Terraform where you will gain all the information you need to implement this infrastructure!
 
Once we have everything set up, now is time to get our hands dirty and write some Terraform code to implement our cool, shiny architecture!
 
We will start off with implementing our remote state and obtaining a key pair which we will use to connect to the instances we will launch. Once we get these done, we will first create the Virtual Private Cloud (VPC) environment. To meet the demands of high-availability, we will spread our private and public subnets to three different availability zones inside a region. We will also create our Private and Public Route Tables to manage the routing between our resources inside VPC.
 
We’ll also make sure to attach an Internet Gateway (IGW) to our VPC to use with public subnets so the resources in those will be able to access and receive public internet traffic. Our private subnet also need some form of internet connection but not both ways; we want only internet access for outgoing connections from our resources in private subnets! To satisfy this requirement, we will launch and attach a NAT Gateway to our private route table.
 
After configuring the low-level networking infrastructure, we will proceed to implement our Launch Configurations for both public and private EC2 instances we will launch through Auto-Scaling Groups. Once we implement the instance launching configurations, we will move on to implement our Auto-Scaling Groups using these launch configurations. We will configure the subnets, machine images, startup scripts and simply everything we need to launch instances successfully.
 
Auto-Scaling doesn’t come out of the box; we will need to configure it regarding our demands and how we want to scale our instances. For our implementation, we will use Target Tracking Scaling which will help use scale and manage our EC2 instances all by itself; we don’t have to do a single thing!
 
We do not do anything for Auto-Scaling once we set it up but for sure we want to know what’s going on with our instances. That’s why we will create a SNS Topic and subscribe to it to get real-time notifications on what’s happening with our instances and infrastructure.
 
There are much more to come in this course and I cannot wait for you to come and learn the best practices from an AWS Certified Solutions Architect!

  • An AWS Account - Free Tier Available!
  • General Knowledge on AWS Model would be nice
  • Theoretical Knowledge on VPC and EC2 Concepts would be nice but not necessary!
  • Beginners on AWS who wants to put their theory in practice
  • AWS Cloud Architect Associate Exam Preppers who wants to practice their theories with real projects
  • Who wants to learn how to implement Infrastructure-as-a-Code or IaaS on AWS
  • Who wants to learn Terraform, infrastructure configuration language from Terraform
  • Who wants to learn and launch Highly-Available, Scalable, Fault-Tolerant and Resilient architectures on AWS!
  • Who wants to learn how to develop infrastructures on AWS using Terraform
  • Who wants to learn how to launch Virtual Private Clouds, Public-Private Subnets and more with Terraform code on AWS
  • Who wants to learn how to launch EC2 Instances publicly and privately using Terraform on AWS
View More...
  • Section 1 : Introduction 4 Lectures 00:10:57

    • Lecture 1 :
    • Lecture 2 :
    • About This Course
    • Lecture 3 :
    • What We Will Build in This Course
    • Lecture 4 :
    • What Do You Need For This Course
  • Section 2 : Preparing The Environment for Development 5 Lectures 00:37:47

    • Lecture 1 :
    • Section Overview
    • Lecture 2 :
    • About Tools and Environment
    • Lecture 3 :
    • Create an AWS Account If You Don_t Already Have It!
    • Lecture 4 :
    • Let_s Create Our AWS Credentials!
    • Lecture 5 :
    • Logging in to AWS Console and A Walkthrough
  • Section 3 : Windows Environment Setup 3 Lectures 00:11:56

    • Lecture 1 :
    • Installing Terraform and IntelliJ Plugin
    • Lecture 2 :
    • Installing AWS SDK (CLI)
    • Lecture 3 :
    • Preparing AWS Credentials for Environment
  • Section 4 : MacOS Environment Setup 3 Lectures 00:10:34

    • Lecture 1 :
    • Installing Terraform and IntelliJ Plugin
    • Lecture 2 :
    • Installing AWS SDK (CLI)
    • Lecture 3 :
    • Preparing AWS Credentials for Environment
  • Section 5 : Terraform Refresher 1 Lectures 00:18:39

    • Lecture 1 :
    • Terraform Crash Course
  • Section 6 : Virtual Private Cloud (VPC) Network Infrastructure with Terraform - Part 1 7 Lectures 00:23:56

    • Lecture 1 :
    • Creating a Key Pair for EC2 Instances
    • Lecture 2 :
    • Creating a S3 Bucket for Terraform Remote State
    • Lecture 3 :
    • Creating Our Project
    • Lecture 4 :
    • Defining Our Remote State Configuration
    • Lecture 5 :
    • Creating a Virtual Private Cloud (VPC)
    • Lecture 6 :
    • Creating Public Subnets
    • Lecture 7 :
    • Creating Private Subnets
  • Section 7 : Virtual Private Cloud (VPC) Network Infrastructure with Terraform - Part 2 7 Lectures 00:32:06

    • Lecture 1 :
    • Creating a Route Table for Public Routes
    • Lecture 2 :
    • Creating a Route Table for Private Routes
    • Lecture 3 :
    • Associating Route Tables with Subnets
    • Lecture 4 :
    • Creating an Elastic IP for NAT Gateway
    • Lecture 5 :
    • Creating the NAT Gateway and Adding to Route Table
    • Lecture 6 :
    • Create an Internet Gateway (IGW) and Adding to Route Table
    • Lecture 7 :
    • Executing Terraform and Outputting Variables for Remote State Reading
  • Section 8 : Elastic Compute Cloud (EC2) with Terraform - Part 1 8 Lectures 00:44:20

    • Lecture 1 :
    • Defining Backend and Reading Remote State for Layer 1 Infrastructure
    • Lecture 2 :
    • Creating Security Groups for EC2 Instances and ELB
    • Lecture 3 :
    • Creating an IAM Role for EC2 Instances
    • Lecture 4 :
    • Creating an IAM Role Policy for EC2 Instances
    • Lecture 5 :
    • Creating an IAM Instance Profile
    • Lecture 6 :
    • Dynamically Using Latest AMI for EC2 Instances
    • Lecture 7 :
    • Launch Configuration for Private EC2 Instances
    • Lecture 8 :
    • Launch Configuration for Public EC2 Instances
  • Section 9 : EC2 High Availability, Scalability and Fault Tolerance with Terraform 12 Lectures 01:17:07

    • Lecture 1 :
    • Creating a Load Balancer for Public Web App Tier
    • Lecture 2 :
    • Creating a Load Balancer for Private Backend App Tier
    • Lecture 3 :
    • Creating an Auto-Scaling Group for Private EC2 Instances
    • Lecture 4 :
    • Creating an Auto-Scaling Group for Public EC2 Instances
    • Lecture 5 :
    • Creating an Auto-Scaling Policy for Public EC2 Instances
    • Lecture 6 :
    • Creating an Auto-Scaling Policy for Private EC2 Instances
    • Lecture 7 :
    • Creating a SNS Topic for Auto-Scaling Notifications
    • Lecture 8 :
    • Creating a SNS Subscription for SMS to Receive Auto-Scaling
    • Lecture 9 :
    • Defining Auto-Scaling Notifications for Triggering on Certain Events
    • Lecture 10 :
    • Reviewing Our Code and Infrastructure Before Execution
    • Lecture 11 :
    • Providing Tfvars, Planning and Executing Everything
    • Lecture 12 :
    • Testing Out The Whole Architecture and Verifying Our Setup
  • Section 10 : Wrapping Up 1 Lectures 00:01:48

    • Lecture 1 :
    • Thank You!
  • How do i access the course after purchase?

    It's simple. When you sign up, you'll immediately have unlimited viewing of thousands of expert courses, paths to guide your learning, tools to measure your skills and hands-on resources like exercise files. There’s no limit on what you can learn and you can cancel at any time.
  • Are these video based online self-learning courses?

    Yes. All of the courses comes with online video based lectures created by certified instructors. Instructors have crafted these courses with a blend of high quality interactive videos, lectures, quizzes & real world projects to give you an indepth knowledge about the topic.
  • Can i play & pause the course as per my convenience?

    Yes absolutely & thats one of the advantage of self-paced courses. You can anytime pause or resume the course & come back & forth from one lecture to another lecture, play the videos mulitple times & so on.
  • How do i contact the instructor for any doubts or questions?

    Most of these courses have general questions & answers already covered within the course lectures. However, if you need any further help from the instructor, you can use the inbuilt Chat with Instructor option to send a message to an instructor & they will reply you within 24 hours. You can ask as many questions as you want.
  • Do i need a pc to access the course or can i do it on mobile & tablet as well?

    Brilliant question? Isn't it? You can access the courses on any device like PC, Mobile, Tablet & even on a smart tv. For mobile & a tablet you can download the Learnfly android or an iOS app. If mobile app is not available in your country, you can access the course directly by visting our website, its fully mobile friendly.
  • Do i get any certificate for the courses?

    Yes. Once you complete any course on our platform along with provided assessments by the instructor, you will be eligble to get certificate of course completion.
  • For how long can i access my course on the platform?

    You require an active subscription to access courses on our platform. If your subscription is active, you can access any course on our platform with no restrictions.
  • Is there any free trial?

    Currently, we do not offer any free trial.
  • Can i cancel anytime?

    Yes, you can cancel your subscription at any time. Your subscription will auto-renew until you cancel, but why would you want to?

531531 Course Views

9 Courses

Hi, I'm Niyazi ErdoÄŸan. I'm a software engineer and AWS Certified Solutions Architect with over ten years of experience in various fields. I'm living in one of the most beautiful cities in the world, Istanbul. I'm a self-taught programmer and I've been programming since I was in middle-school. My experience ranges from embedded development to server-side and client-side development technologies.
View More...
  • Unmatched Variety and Value!
    Learnfly's monthly subscription offers unlimited access to a vast range of courses. Affordable pricing, compared to competitors, makes it the ultimate choice for continuous learning.
    Jessica M.

    4.7

    JM
  • Top-Notch Quality, Affordable Rates!
    High-quality courses with certified instructors make Learnfly stand out. The affordable pricing is a game-changer for those seeking premium education.
    Alex P.

    4.5

    AP
  • Certified Excellence Every Time!
    Learnfly's courses, taught by certified instructors, ensure top-notch learning experiences. The course completion certificates add significant value to one's skill set.
    Sarah R.

    4.3

    SR
  • Round-the-Clock Support!
    Learnfly goes the extra mile with 24/7 course support. Their dedication to helping students succeed is commendable.
    Ryan K.

    4.1

    RK
  • Learn Anywhere, Anytime!
    Whether on mobile, PC, or tablet, Learnfly's platform offers flexibility. Learning on the go has never been easier.
    Emily S.

    4.7

    ES
  • Job-Ready Skills!
    Learnfly's job-oriented courses equip learners with practical skills for the workplace. An investment in career growth!
    Jake M.

    4.2

    JM
  • Budget-Friendly Brilliance!
    Learnfly's pricing is a steal for the quality and variety of courses offered. Quality education without breaking the bank.
    Olivia T.

    4.5

    OT
  • Instructor Excellence Unleashed!
    Learn from the best with Learnfly's certified instructors. The platform ensures that knowledge is imparted by industry experts.
    Daniel L.

    4.0

    DL
  • Achievement Unlocked!
    Learnfly not only offers courses but also recognizes your efforts with course completion certificates. A sense of accomplishment with every course finished.
    Maya H.

    4.6

    MH
  • Learning Revolution!
    Learnfly's platform is a revolution in education. Access to unlimited courses at affordable rates is a game-changer.
    Ethan W.

    4.7

    EW
  • aws-certified-solutions-architect-associate-2018

    AWS Certified Solutions Architect -...

    By : Zeal Vora

    Lectures 115 Beginner 16:14:36
  • google-cloud-platform-gcp-for-aws-professionals

    Google Cloud Platform (GCP) for AWS...

    By : Joseph Holbrook

    Lectures 42 Beginner 5:46:58
  • developing-with-s3-aws-with-python-and-boto3-series

    Developing with S3_ AWS with Python...

    By : Niyazi Erdogan

    Lectures 40 Beginner 3:5:10
  • getting-your-hands-on-azure-iot

    Getting your hands on Azure IoT

    By : Khaled Jemni

    Lectures 7 Beginner 0:58:36
  • rds-postgresql-and-dynamodb-crud-aws-with-python-and-boto3

    RDS PostgreSQL and DynamoDB CRUD_ A...

    By : Niyazi Erdogan

    Lectures 85 Beginner 7:7:52

Students learning on Learnfly works with Fortune 500 companies around the globe.

Sign Up & Start Learning
By signing up, you agree to our Terms of Use and Privacy Policy
Reset Password
Enter your email address and we'll send you a link to reset your password.