I really like your teaching style. No slide decks, no reading verbatim from notes, just real demos. This was a lot of great info in 27m. Thanks so much!
Love how I stumbled on your channel for a monitor review, now I am hooked with all your other content! Thank you for this great video, been playing around with it lately, so this is some good reminders!🙌🏾
I just saw terraform this word recently, and saw your video now. Then I noticed this video was published 1 year ago😅. Thanks for making so many enlightening videos.
Terraform is multi-cloud but that doesn't mean you can take your aws template and move it gcp or azure, you still need to research and rewrite your whole infrastructure for the targeted cloud provider. And any differences in services you still need to be aware of and understand. Kubernetes is more portable but it still relies on cloud provider servers such as load balancers, vpcs, etc. which can work differently between cloud providers.
Travis. I am completely new to Terraform and I have been digging for days looking for a "Practical Tutorial". I can definitely hang my hat on this one. Many of the others start out too detailed. Your way of teaching is perfect. I am a Network Engineer and have been using Ansible for automating many tasks. But I have read that Terraform works with REST APIs which is what I need for some of my detailed firewall config/management. Thanks! If you have any classes available, I would be interested in purchasing one.
Dude, you’re an incredibly clear speaker, everything made sense and now I’m madly excited about Terraform. We use it at work but I’ve always avoided it in lieu of making changes manually. So amped! Also, I’m heading straight to your networking video next, so much to learn. And while people might nitpick aspects of your video format, I think overall it’s a solid 9.5/10 (nothing’s perfect, but you did a phenomenal job getting me to appreciate Tf and see why it’s worth getting into). Cheers mate!
Thanks for your video! Very helpful for consolidating my understanding of terraform as a newbie. (I wrote my first terraform configuration file today.)
Your teaching style is awesome! it will be great to have a second part of this terraform video in which you go more in-depth of other advanced topics such as modules, filters, terraform cloud providers, etc.
Hi Travis! First of all Super Thankyou!! I m new to terraform learning .. the way you have explained here with just one example that compelled me to like and subscribe. You channel is my new addiction.🤩
I've only recently put on my Terraform training wheels. I'm really loving it so far and this video has helped me to cement things in my brain. As a non programmer that's trying to launch myself into a new career I struggle with a few concepts but you have really helped me to understand them. However, I followed along with this project and I cant seem to figure out where I have gone wrong. My user data script runs fine and index.html is created. I need to fine tune my networking so I am able to view it in browser. I only get as far as a loading wheel so not sure if my SG or VPC are working as expected at the minute. Really love the content and your story resonates with me. One day I'll get there too!
One thing I think was a missed opportunity here is that you didn't cover "terraform plan". Very important TF option to have in your toolbelt. That said, your stuff is great!
Hi Travis, here after my succeful asw saa exam. A video about the next routes after that would be fantastic, for exaple best routes to get hired or just like your thoughts. Even some resource to practice before get hired would be apprectiated. Love you!
Hi can you please make a video & explain the writing/structure of Ansible & Terraform in a simple manner & in layman's terms, like when & where to add spaces, hyphens, what is variable, etc it's a bit confusing ... please it's a request, do reply
Great video and content. But i agree with some of the comments below: it would be nice if you could zoom to your code or increase fontsize. It‘s hard to read
Travis, that is good - but again for the purpose of revising; what if I do not know terraform at all. I am looking for a video wherein i can learn how the terraform documentation be brough to use to set up infra through code, what do cloud/devops engineers calculate to deploy their infra.....(i mean following through the documentation)
Very cool and convincing. But now I want to know more! E.g. what if I wanted to actually spin up a 100 servers, I don't imagine I'd have to write down a 100 variable names? Or an autoscaling cluster or something? And maybe I missed something, but how did you provision your server with nginx? And I understood it should be very easy to switch between cloud providers, but this seems aws focused. I understand that not everything fits in one video :) of course I can google everything but I would definitely watch a followup!
Great video 👍 A question: suppose I want to change my instance from micro to large, are all processes in the instance be stopped and started? I see you can run shell commands which can interact with our servers ( jaguardb vector database) to make adjustments to server configuration. That is cool. If processes do not get interrupted, it would really really cool.
TF can hadle that request, but AWS will stop the instance to upsize it (that's an AWS thing), so processes will get interrupted for that brief time. May be able to bring in a load balancer and add an extra instance that stays up while upsizing?
@@TravisMedia yes, extra instance and load balancer would work perfectly for computing nodes or stateless nodes. Here in database servers, they use sharding for data distribution, the extra node needs synchronization with the main one. This can be done one by one, (with one extra node), for all nodes to be upgraded . it would just take time to copy data.
Thanks for the video...i wonder what is the step to integrate with existing vpc?..normally the use case is to integrate with our existing infrastrucutre..please advice..
It would be so nice to have a job doing this. I'm learning so much but it would be a lot easier to retain that knowledge if I was putting it to real world use.
After watching some of your vids it seems like your journey started with webdev and you’re now in devops. I’m learning webdev now. Was the transition easy once you understood the webdev languages?
Probably. If you go to AMI Catalog, you'll see the latest Amazon Linux 2023 AMI. Currently it's ami-05c13eab67c5d8861 (64-bit (x86)) / ami-0840becec4971bb87 (64-bit (Arm))
Hey Gil! It’s hardcoded. When you go to launch an EC2 instance you can choose “Browse More APIs” and find an AWS provided AMI and get the ID there. I just found an Amazon Linux 2 AMI and got the AMI Id and used that.
I like the idea. But if I would want to have 3 clouds supported, I still need to make the code 3 times right? Because all the different cloud providers like AWS, GCP and Azure have different syntax, right? So yeah, initially it will be more work, but then you can easily transfer to another cloud provider if one were to go unavailable. But what about servers? I mean if you deploy windows servers for example, all the configuration would have to be in like a script so it ran when terraform is creating the instance, otherwise it would just be an unconfigured windows server. I have lots of questions
The benefit is you only have one syntax (Terraform), but yes 3 cloud scripts. The alternative though would be a Cloudformation template (for AWS), ARM template (for Azure), and whatever Google uses for its deployment. All three different technologies and syntax with each one being proprietary to it's own cloud/solution. As to your second question, that would all take place in the script (and preferably all controlled via variables that can be easily changed/configured). You would essentially want your entire environment or potential environment to be reproducible from a "one-click install" script.
@@TravisMedia I would really love to see it in a real world scenario and how to really put it to use. Seems very powerful. My boss told me to look into it but it all seems a bit too complicated for me as a fresh-out of school Junior Cloud Engineer xD
I really like your teaching style. No slide decks, no reading verbatim from notes, just real demos. This was a lot of great info in 27m. Thanks so much!
Thanks a lot.its more easier when listening to your teaching ❤
Nice to finally see a Terraform video that is an actual hands-on tutorial!
Travis has a very soothing voice
Kinda reminds me of Obama.
I’m currently using terraform at work and I’m loving it ❤
Hello sir
I am currently in college
IT engineering last year
terraform is best yes or no
Plz reply me
@@sucreationstudio5752 yes
Love how I stumbled on your channel for a monitor review, now I am hooked with all your other content! Thank you for this great video, been playing around with it lately, so this is some good reminders!🙌🏾
I just saw terraform this word recently, and saw your video now. Then I noticed this video was published 1 year ago😅. Thanks for making so many enlightening videos.
Terraform is multi-cloud but that doesn't mean you can take your aws template and move it gcp or azure, you still need to research and rewrite your whole infrastructure for the targeted cloud provider. And any differences in services you still need to be aware of and understand. Kubernetes is more portable but it still relies on cloud provider servers such as load balancers, vpcs, etc. which can work differently between cloud providers.
Travis. I am completely new to Terraform and I have been digging for days looking for a "Practical Tutorial". I can definitely hang my hat on this one. Many of the others start out too detailed. Your way of teaching is perfect. I am a Network Engineer and have been using Ansible for automating many tasks. But I have read that Terraform works with REST APIs which is what I need for some of my detailed firewall config/management. Thanks! If you have any classes available, I would be interested in purchasing one.
Not me searching for another stuff and stumbling on your video, now i am hooked. Thank you so much, big ups.
So glad for this video, I just started having to touch terraform code last week. This got me up to speed at work.
Dude, you’re an incredibly clear speaker, everything made sense and now I’m madly excited about Terraform. We use it at work but I’ve always avoided it in lieu of making changes manually. So amped! Also, I’m heading straight to your networking video next, so much to learn.
And while people might nitpick aspects of your video format, I think overall it’s a solid 9.5/10 (nothing’s perfect, but you did a phenomenal job getting me to appreciate Tf and see why it’s worth getting into). Cheers mate!
I like the way you explain. You don't refer any sheet for configuration with that you covered more content in short video. Thank you so much.
Thats an amazing “Intro to Terraform” Thanks Travis
He is right, this is entry level door rn in the industry!
Super simple and very easy to understand video for a newbee to Terraform❤
Hi Travis. Your videos are really helpful. It would be great if you increase the font size a bit for better visibility.✌
Thanks for your video! Very helpful for consolidating my understanding of terraform as a newbie. (I wrote my first terraform configuration file today.)
i think this is one of the best i have seen online..... 100 thumbs up for you
Amazing teaching style, lots of useful info conveyed in a very short time. Thanks a lot, Travis!
Your teaching style is awesome! it will be great to have a second part of this terraform video in which you go more in-depth of other advanced topics such as modules, filters, terraform cloud providers, etc.
Thanks a lot for this useful video, Travis. Really appreciate it. I was curious if there's code file(raw) for the last portion of this demo?
Really great teaching style and presentation. Love it! Looking for Terragrunt next!
Hi Travis! First of all Super Thankyou!!
I m new to terraform learning .. the way you have explained here with just one example that compelled me to like and subscribe.
You channel is my new addiction.🤩
Thank you this is a God sent I was looking to automate infrastructure using code!
Superb!!! Straight to the point no long story . Thank you.
Great video. Very basic, clear and scalable to full capacity of the topic!
You explained a lot in short time. Great video. Very knowledgeful. Thanks and love from India ❤
Cool that you combine your network video with this.
Bro those first 8 minutes helped me a lot. Thank you.
Absolutely love your teaching style, easy to follow, understand and remember. Great work!!!
Great video. No bs, straight to the point. Thank you brother!
Thank you for watching it!
I've only recently put on my Terraform training wheels. I'm really loving it so far and this video has helped me to cement things in my brain. As a non programmer that's trying to launch myself into a new career I struggle with a few concepts but you have really helped me to understand them. However, I followed along with this project and I cant seem to figure out where I have gone wrong. My user data script runs fine and index.html is created. I need to fine tune my networking so I am able to view it in browser. I only get as far as a loading wheel so not sure if my SG or VPC are working as expected at the minute.
Really love the content and your story resonates with me. One day I'll get there too!
Great tutorial! Thanks for sharing!
great video, really loving your content. Subscribed!
This was an amazing intro, lots of great information in under 30 minutes!
One thing I think was a missed opportunity here is that you didn't cover "terraform plan". Very important TF option to have in your toolbelt. That said, your stuff is great!
You do such a great hands on tutorials !
Hi Travis, here after my succeful asw saa exam. A video about the next routes after that would be fantastic, for exaple best routes to get hired or just like your thoughts. Even some resource to practice before get hired would be apprectiated. Love you!
I love your videos Travis. Your VS Code and Terminal font sizes are really tiny something. 🙏
Thanks for the feedback. I’ll increase it in future videos.
Hi can you please make a video & explain the writing/structure of Ansible & Terraform in a simple manner & in layman's terms, like when & where to add spaces, hyphens, what is variable, etc it's a bit confusing ... please it's a request, do reply
Thank you Travis for sharing knowledge !
Im trying to get into Data Engineer. Thanks for the tuts.
All the way from South Africa. Thank you sir
Great! For future videos, please make font bigger or share only part of the screen. Thanks!
Keep it up man...I love the content
Great video and content. But i agree with some of the comments below: it would be nice if you could zoom to your code or increase fontsize. It‘s hard to read
I appreciate the feedback! Will do so going forward.
@@TravisMedia Do you have a best pick course for terraform on Udemy (for all platforms)? You completely convinced me with this video.
Awesome, just what I was curious about! Thank you! 🤙
Travis, that is good - but again for the purpose of revising; what if I do not know terraform at all. I am looking for a video wherein i can learn how the terraform documentation be brough to use to set up infra through code, what do cloud/devops engineers calculate to deploy their infra.....(i mean following through the documentation)
You can always ask Phind for help. That's my plan.
This is so wonderful; straight to the point. Do you have anything done for use with Azure as a Provider?
Thanks for the informative video! Ended a sub! Post more DevOps stuff please
Will do, thanks for the feedback
Very cool and convincing. But now I want to know more! E.g. what if I wanted to actually spin up a 100 servers, I don't imagine I'd have to write down a 100 variable names? Or an autoscaling cluster or something? And maybe I missed something, but how did you provision your server with nginx? And I understood it should be very easy to switch between cloud providers, but this seems aws focused. I understand that not everything fits in one video :) of course I can google everything but I would definitely watch a followup!
Thank you for this video Travis!
Good job done. Thanks a lot
another awesome video, thanks Travis
That was really helpful ❤and professional 👏 thank you so much
This is the terraform intro video I was looking for.
Great content thx! instant sub
Such a great video. Thanks :)
So well delivered.
Great tutorial
Nice demo👍🏻
great video Travis but please any chance you can add the codes or have them some where in a git repo we can sort of copy and follow along the video ?
Great video 👍 A question: suppose I want to change my instance from micro to large, are all processes in the instance be stopped and started? I see you can run shell commands which can interact with our servers ( jaguardb vector database) to make adjustments to server configuration. That is cool. If processes do not get interrupted, it would really really cool.
TF can hadle that request, but AWS will stop the instance to upsize it (that's an AWS thing), so processes will get interrupted for that brief time. May be able to bring in a load balancer and add an extra instance that stays up while upsizing?
@@TravisMedia yes, extra instance and load balancer would work perfectly for computing nodes or stateless nodes. Here in database servers, they use sharding for data distribution, the extra node needs synchronization with the main one. This can be done one by one, (with one extra node), for all nodes to be upgraded . it would just take time to copy data.
I'm learning Terraform with Github and it's interesting.
I enjoyed this video. Thank you for making it.
Thank you very much for making this video!
Thanks for the video...i wonder what is the step to integrate with existing vpc?..normally the use case is to integrate with our existing infrastrucutre..please advice..
Hi Mr Travis, U're a master chief ..wooowww...thank u
I was first in incognito mode, I had to switch over just to hit the subscribe button.
THANK YOU VERY MUCH!
Love you Travis for this video..
Thank you :) nice video
It would be so nice to have a job doing this. I'm learning so much but it would be a lot easier to retain that knowledge if I was putting it to real world use.
I feel this to the core!! With every technology honestly!
Can you please create similar kind of videos on the topics like Google Pub/Sub, BigQuery & Spanner?
After watching some of your vids it seems like your journey started with webdev and you’re now in devops. I’m learning webdev now. Was the transition easy once you understood the webdev languages?
Hi Travis, what if the provider is local servers, does terraform work on that as well?
Nice vedio, can this useful in vmware
Amazing video
When using "terraform destroy" while having multiple instances, how to terminate a specific instance ?
12:25 - I was not able to find this image in AMI registry. Suppose that it was replaced with a new one.
Probably. If you go to AMI Catalog, you'll see the latest Amazon Linux 2023 AMI. Currently it's ami-05c13eab67c5d8861 (64-bit (x86)) / ami-0840becec4971bb87 (64-bit (Arm))
@@TravisMediaI was not expecting such a swift answer :) Thank you for commenting on this, Travis!
Just amazing !
The value of your content has won my subscription fair and square
how was the AMI ID created or how did come to be? Thanks in advanced
Hey Gil! It’s hardcoded. When you go to launch an EC2 instance you can choose “Browse More APIs” and find an AWS provided AMI and get the ID there. I just found an Amazon Linux 2 AMI and got the AMI Id and used that.
Hi do you plan on doing an ansible video ?
I can, what would you like to see?
@@TravisMediasame as you have done with Terraform, intro and basic demo.
When you talked about the profile, what if you had a profile named travis? How would you do that?
What are your thoughts on Wing/Winglang?
Looks neat! Though I’ve never used it.
thank you very much
Hi, is the code shown at the end of the video available somewhere?
Memorizing the entire config for aws is however a nightmare.
19:22 and 22:53 seems to be the same thing, or is the user data for Nginx server the unique thing in 22:53?
is there a way to build out and test the entire infra locally before deploying to the cloud? can all this be done using a free tier?
What if you have no default value and you just want user to enter a value ? how would you store that value ? as an empty string?
where did you get id from? did you really type that think? is there some link or using aws cli to get list of that ids?
can you make the same with Oracle cloud please?
Any prerequisites
Sooo goood.
what is VPC? virtual port Channel ?
How about to create 100 virtual machines in terraform at a time?
Is it better to do Devops or Azure Cloud?
I like the idea. But if I would want to have 3 clouds supported, I still need to make the code 3 times right? Because all the different cloud providers like AWS, GCP and Azure have different syntax, right?
So yeah, initially it will be more work, but then you can easily transfer to another cloud provider if one were to go unavailable.
But what about servers?
I mean if you deploy windows servers for example, all the configuration would have to be in like a script so it ran when terraform is creating the instance, otherwise it would just be an unconfigured windows server. I have lots of questions
The benefit is you only have one syntax (Terraform), but yes 3 cloud scripts. The alternative though would be a Cloudformation template (for AWS), ARM template (for Azure), and whatever Google uses for its deployment. All three different technologies and syntax with each one being proprietary to it's own cloud/solution. As to your second question, that would all take place in the script (and preferably all controlled via variables that can be easily changed/configured). You would essentially want your entire environment or potential environment to be reproducible from a "one-click install" script.
@@TravisMedia I would really love to see it in a real world scenario and how to really put it to use. Seems very powerful. My boss told me to look into it but it all seems a bit too complicated for me as a fresh-out of school Junior Cloud Engineer xD