I completed this course before my scheduled interview on terraform and got the job and still i am using this course as a reference. thanks, man for the wonderful course.
I can confidently say that this one video is all you need to learn Terraform. It's well-explained, using the simplest language possible, without any complex terms that might overwhelm someone just starting with Terraform. Thank you, Sanjeev, for making such a powerful tool so easy to understand.
1:36:04 Just a little clarification in case anyone was wondering what the the user_data portion and what the "goofy header" is. 2 angle brackets (less than symbols) and then a dash symbol (-) will start a "here doc" (en.wikipedia.org/wiki/Here_document). ">>" followed by a delimiting identifier (EOT in your example), starting on the next line, by the text to be quoted, and then closed by the same delimiting identifier on its own line. This syntax is because here documents are formally stream literals, and the content of the document is redirected to stdin (standard input) of the preceding command; the here document syntax is by analogy with the syntax for input redirection, which is < “take input from the following file”.
My #!/bin/bash file is not working and hence I am not able to install the apache2 so I can't see the echo statement in the ipv4 public address so let me know if we have to create a bin folder first using bash..or something pretty new to this don't have much idea kindly help.
I tried free code camp a long time ago when it was first starting out. Overall it was okay, but not great. I got an hour into this tutorial and was thinking "who made this, its amazing and its add free, they are surely some sort of generous God." I had no idea FCC quality has shifted so much, I'll have to go back and check what other stuff they have. This video is great.
This is one of the best tutorials I have come across. Simple and straightforward, that is how I can sum this up. Thank you for the wonderful contribution!
I had to pause the video to check the name of the instructor...this is a very good intro course to terraform, this has got me excited for a devops career, thank you very much Sanjeev for making this really clear and engaging to watch
This course is excellent- practical in that you go through the process we all do in real life- google search > copy/paste code > hack it. Even the mistakes are really informative, as they're exactly the sort of things everyone comes up against when starting Terraform. Huge thanks to you guys!
Perfectly paced course for a beginner like me. I am still 30 minutes away to complete it, but I have learned a lot from it so far and wanted to thank the instructor.
I am getting this error while performing "terraform init" command PS G:\chandan\AWS\Terraform Project 1> terraform init terraform : The term 'terraform' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + terraform init + ~~~~~~~~~ + CategoryInfo : ObjectNotFound: (terraform:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
This is by far the best Terraform explanations I have found out there. Simple, well explained and easy to follow and understand. Thank you so much. I love this video and am saving it.
This is by far one of the best content I came across. Inspite of me being new to terraform , AWS and Linux , I am already feeling comfortable to work on them after this video. Thanks a ton once again. Keep doing the good work.
Loved your video, I learned so much in this 2 hour tutorial. I'm now confident working with Terraform and hope to land a job in Cloud soon. For those having problems with server saying CONNECTION REFUSED it is most likely that the user data is not running. You can instead create a .sh file in the same folder of the Terraform project and add the commands there omitting the EOF, just add the lines with sudo. We then access the .sh file doing the following in the user_data section: user_data = file("${path.module}/filename.sh") That should work Also I just discovered we can Output more than one value by using a list: output "name" { value = [resource.propert1, resource.property2....] }
video Summary:: 0:28: 📚 This video is a crash course on Terraform, an infrastructure as code tool, covering setup, installation, and core concepts. 10:53: ! The video demonstrates how to install Terraform using Homebrew on a Mac. 20:25: ✅ The video explains how to open a folder in VS Code and create a new file for Terraform code. 30:24: 🎥 The video explains how to deploy a Windows Server in AWS using EC2 and how to do it in the AWS console before mapping it to Terraform. 50:42: 🔥 The video demonstrates how to destroy an instance created using Terraform and remove it from AWS. 1:01:10: 📺 The video explains how to view and understand subnets in the default VPC created in Terraform. 1:12:01: 🔑 The video discusses the steps to create a live running web server on AWS using Terraform. 1:23:24: 💡 The video explains how to apply different rules for Ingress and Egress policies, allowing specific TCP traffic on certain ports and restricting access to certain subnets. 1:36:01: 📝 The video explains how to create a bash script to automate commands in Ubuntu. 1:47:37: 🔑 The video explains how to connect to an EC2 instance using SSH and a PEM file. 2:10:13: 📝 The video discusses different methods for assigning variables in a programming language. Cheer!!
First!!! I'm going to learn it since so many cloud engineer job openings have terraform listed in their descriptions. Also after learning Ansible I think Terraform is a great next step to take.
Excellent refresher for me as I am trying to get Terraform Associate certification. Perfect Language, Pace, Content Flow and many more...I am very impressed and wanted to be like you when delivering a technical presentation...
What a nice video. Everything what I needed to know about terraform for myself. The other tutorials are talking to much about senseless points. Great tutorial! Go on like this.
This course was soooo good. Very well put together, flowed nicely and covered alot of good information with real world examples to get started with Terraform. I have definitely subscribed.
Finally, a tutorial that actually explains to beginners. Some other videos claim to be for beginners and then 5mins into the video, they start pulling steps put of thin air! Thank you so much for this. This is so simplified that I found this very very helpful!
Very good course, thank you very much! By the way, PPE key is automatically converted to PPK once added in Putty-- Auth just select Show all files and select the PPE key. no need to use PuttyGen to modify the key.
1:29:30 *** Update *** resource "aws_eip" "eip-1" { network_interface = aws_network_interface.UAT-eni.id associate_with_private_ip = "10.0.0.100" } In the latest Terraform AWS provider versions, specifying "vpc = true" is no longer necessary because all Elastic IPs are assumed to be associated with a VPC by default. Therefore, you can safely remove the "vpc" parameter from your aws_eip resource block:
The depth of this material is astounding. A book I read with related themes sparked a major transformation in me. "AWS Unleashed: Mastering Amazon Web Services for Software Engineers" by Harrison Quill
Great video! Very clear presentation. Not sure if it was mentioned or not, but when you were having a "request timeout" around 1:45:25 when trying to ping the public ip, it is because the security group for the ec2 instance didn't have an inbound rule for ICMP traffic. Thanks for the great content!
Yes, i noticed how he tried troubleshooting SSH by pinging ec2 instance, which by default is blocked. However, i loved how he realized the mistake looking into his security group. I was waiting for that error cos i saw his SSH ingress on port 2 when setting up terraform template. Overall, this was an excellent tutorial video. I should add that it makes sense to be familiar with setting up resources using the console, that way, it's easy to transition to terraform files.
Outstanding explanation and got an overview of terraform, got hands dirty and got hands on experience by following this tutorial and perfect tutorial for beginner like me. I will definetely subscribe now.
Best intro video in Terraforms for AWS Cloud by far IMO, I'd just add the instance as a dependency for the "aws_eip" as well to avoid any unexpected errors, so the depends_on would look something like "depends_on = [aws_internet_gateway.gw, aws_instance.web-server-instance]".
Great course and I appreciate it was free. In the beginning, you said you would cover authentication/access into AWS without having to use the access key and secret key but I did not see that covered in this video. I'd like to test out some real-life deployments in our company sandbox account but we are only allowed to access the account using federated credentials and we are not allowed to use IAM users accounts.
brother you are a fantastic, mindblowing lifesaver, no word to say about it..... word would be short for you. plz keep making video like this. plz make more video son terraform.
Remember, you have to hit CTRL + S before doing anything in the terminal, because it just doesn't see what's on your screen, it sees the last thing you saved.
Great! One hiccup - 2 years on - could be worth updating with an SSL-Cert and enabling SSL in the apache server in the user_data script.... or mention that the apache server is only going to be serving on port 80... and that browsers are now following that IP defaulting to HTTPs. This caused me a couple hours of pain, hoping you can help others a little (even if it's just an annotation on the vid)
Great video! Perfect pace too. I followed along and had almost no issues. Since it's a year later, I used Ubuntu 20.04. Seems by default apache2 doesn't listen on 443, so clicking the web link in the AWS console for the EC2 instance doesn't work. Just change https to http and it will show your message. Couple notes: EOF is End Of File. That
This is an incredibly awesome tutorial for Terraform, both for revising the tool or learning it for the very first time. Very nicely explained. Subbed to the channel.
Wow. It escalated quickly. At first you were explaining how to extract an zip archive in Windows and then all of a sudden you were casually messing with the Linux network routing tables
for egress_only_gateway_id , in my case it didn't work so i generated an ID in format of eigw-0135......, which fixed the issue.....And yes a really good tutorial....
Now that I look back into VSCode, it's kinda crazy when your instructor gets hyped up for VSCode's built-in terminal lol. VSCode has truly changed the development world
This's really a very good video to provide overall understanding on Terraform. The person has explained step wise so that anybody can understand if he/she has a basic knowledge on AWS cloud platform. Lots of appreciation.
Basically just copying from the documentation and not clarifying much beyond that. Very annoying with the typos and mistakes all the time. I watched the video on Terraform backends too since I'm interested but it was just more of the same. You're better off reading the documentation.
Can't thank you enough, earlier I was doing the server setup manually using console, that procedure was ok but reproducing a similar setup for another program was just a time consuming. Can't wait try this and migrate existing services to terraform
This guy, working hard for all of us, making videos in the middle of the night Appreciate it! I guess something that I would like to see added would be how can we break this large file into more modular sized in nested folders/ files style of architecture. Good job!
This is a great course for beginners to Terraform. Thanks a lot to the instructor for taking time to explain Terraform. And thanks to free code camp. This course is better than many paid courses out there
We define the number of instances and state of the infrastructure and terraform will compare it with what is running and actually start stop update and make changes to real infrastructure. That is not only great concept , but actually works😂. Most dev ops people never wrote any program or tried to automated anything. They finally needed someone to do things like this. There should be a UI to display the configuration. A wizard style that Microsoft came up with in th 80s or 90s.
I completed this course before my scheduled interview on terraform and got the job and still i am using this course as a reference. thanks, man for the wonderful course.
Congrats Jithendra, How much experience did you keep in Terraform. I am learning terraform. Can you please help me. I may have an interview.
Good one man,help us as well
I am a beginner from where need ti start as well as what things are prerequisite please give answer.
@@enjoytechchannel8900 no pre requisites required. Try to learn the subject thoroughly.
@@madhukart9380 Thank you for your reply.. so as a beginner from where I start and learn please suggest and waiting for your reply.
I can confidently say that this one video is all you need to learn Terraform. It's well-explained, using the simplest language possible, without any complex terms that might overwhelm someone just starting with Terraform. Thank you, Sanjeev, for making such a powerful tool so easy to understand.
1:36:04
Just a little clarification in case anyone was wondering what the the user_data portion and what the "goofy header" is.
2 angle brackets (less than symbols) and then a dash symbol (-) will start a "here doc" (en.wikipedia.org/wiki/Here_document).
">>" followed by a delimiting identifier (EOT in your example), starting on the next line, by the text to be quoted, and then closed by the same delimiting identifier on its own line. This syntax is because here documents are formally stream literals, and the content of the document is redirected to stdin (standard input) of the preceding command; the here document syntax is by analogy with the syntax for input redirection, which is < “take input from the following file”.
thx :')
My #!/bin/bash file is not working and hence I am not able to install the apache2 so I can't see the echo statement in the ipv4 public address so let me know if we have to create a bin folder first using bash..or something pretty new to this don't have much idea kindly help.
I tried free code camp a long time ago when it was first starting out. Overall it was okay, but not great. I got an hour into this tutorial and was thinking "who made this, its amazing and its add free, they are surely some sort of generous God." I had no idea FCC quality has shifted so much, I'll have to go back and check what other stuff they have. This video is great.
The quality has gotten better.
For something free, it's really great.
1
00:00 intrudction
01:56 AWS account setup
06:09 Windows installation
10:06 Mac installation
13:12 Linux installation
17:40. IDE setup, VSCode + Terraform extension
20:51 Terrafrom overview
43:33 Modifying resources
50:32 Delete resources
54:54 Reference Resources
1:04:49 Terraform files
1:09:47 Practice Project
1:50:33 Terraform commands
1:54:05 Terraform output
2:00:39 Target resource
2:04:01 Variables
awesome
This is one of the best tutorials I have come across. Simple and straightforward, that is how I can sum this up.
Thank you for the wonderful contribution!
00:00 introduction
01:56 AWS account setup
06:09 Windows installation
10:06 Mac installation
13:12 Linux installation
17:40. IDE setup, VSCode + Terraform extension
20:51 Terraform overview
43:33 Modifying resources
50:32 Delete resources
54:54 Reference Resources
1:04:49 Terraform files
1:09:47 Practice Project
1:50:33 Terraform commands
1:54:05 Terraform output
2:00:39 Target resource
2:04:01 Variables
I had to pause the video to check the name of the instructor...this is a very good intro course to terraform, this has got me excited for a devops career, thank you very much Sanjeev for making this really clear and engaging to watch
I thought if was Quincy Jones at first
The best course for beginners. I highly recommend everyone to start from here.
This course is excellent- practical in that you go through the process we all do in real life- google search > copy/paste code > hack it. Even the mistakes are really informative, as they're exactly the sort of things everyone comes up against when starting Terraform. Huge thanks to you guys!
I am new to terraform and I got started with this video and I feel like I am a pro now, thank you so much 🔥
After watching this video prior to my interview for a DevOps engineer role, I was able to successfully ace the interview and secure the job.
Perfectly paced course for a beginner like me.
I am still 30 minutes away to complete it, but I have learned a lot from it so far and wanted to thank the instructor.
I am getting this error while performing "terraform init" command
PS G:\chandan\AWS\Terraform Project 1> terraform init
terraform : The term 'terraform' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ terraform init
+ ~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (terraform:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
I'm a DevOps beginner, satisfied learning basics of Terraform.. Teaching is outstanding, very detailed and to the point 👏🤝 thank you
3 hours ago I knew nothing about Terraform. Now, I consider myself an expert because of this course. Thank you!
This is much better than any lecture teaching terrafrom on Udemy. Good work. Thanks million.
Exactly all I needed to know about Terraform in one video.
It was paced well, useful shortcuts and some great tips too.
CVS
@@karisnahjoshi1927 hi u
Love how you showed the google process instead of trying to 'look smart by hiding the process in the background' like others.
This is by far the best Terraform explanations I have found out there. Simple, well explained and easy to follow and understand. Thank you so much. I love this video and am saving it.
The instructor is so talented really.
His way is so great and it's a really valuable content.
Thank you
This is by far one of the best content I came across. Inspite of me being new to terraform , AWS and Linux , I am already feeling comfortable to work on them after this video. Thanks a ton once again. Keep doing the good work.
$aaaaaa was aq
very true
Loved your video, I learned so much in this 2 hour tutorial. I'm now confident working with Terraform and hope to land a job in Cloud soon.
For those having problems with server saying CONNECTION REFUSED it is most likely that the user data is not running. You can instead create a .sh file in the same folder of the Terraform project and add the commands there omitting the EOF, just add the lines with sudo. We then access the .sh file doing the following in the user_data section:
user_data = file("${path.module}/filename.sh")
That should work
Also I just discovered we can Output more than one value by using a list:
output "name" {
value = [resource.propert1, resource.property2....]
}
I wish there was a way to give more likes in order to show my deep, sincere appreciation for this amazing video and work. Thanks FCC, thanks Sanjeev.
video Summary::
0:28: 📚 This video is a crash course on Terraform, an infrastructure as code tool, covering setup, installation, and core concepts.
10:53: ! The video demonstrates how to install Terraform using Homebrew on a Mac.
20:25: ✅ The video explains how to open a folder in VS Code and create a new file for Terraform code.
30:24: 🎥 The video explains how to deploy a Windows Server in AWS using EC2 and how to do it in the AWS console before mapping it to Terraform.
50:42: 🔥 The video demonstrates how to destroy an instance created using Terraform and remove it from AWS.
1:01:10: 📺 The video explains how to view and understand subnets in the default VPC created in Terraform.
1:12:01: 🔑 The video discusses the steps to create a live running web server on AWS using Terraform.
1:23:24: 💡 The video explains how to apply different rules for Ingress and Egress policies, allowing specific TCP traffic on certain ports and restricting access to certain subnets.
1:36:01: 📝 The video explains how to create a bash script to automate commands in Ubuntu.
1:47:37: 🔑 The video explains how to connect to an EC2 instance using SSH and a PEM file.
2:10:13: 📝 The video discusses different methods for assigning variables in a programming language.
Cheer!!
where the hell this treasure was hidden, can't believe such material is available. Thanks Guys
oh my goodness. Who are you other than the best teacher of terraform in the whole world. Thanks dude!!!!
Best Terraform introduction, hands down. Thank you.
So far the best course ever I have come across. The instructor explained very clearly the concepts.
Wow its just awesome. Thanks for making terraform looks so
easy. The way you explain each small small concept is incredible.
This video helped me a lot while doing a beginner level project. Thank you very much!
This course is amazing, after 3 years it has been uploaded it's still very useful
First!!! I'm going to learn it since so many cloud engineer job openings have terraform listed in their descriptions. Also after learning Ansible I think Terraform is a great next step to take.
Have you looked into packer?
Really nice for putting a lot of it in the AMI and you can use ansible to provision it.
Excellent refresher for me as I am trying to get Terraform Associate certification. Perfect Language, Pace, Content Flow and many more...I am very impressed and wanted to be like you when delivering a technical presentation...
What a nice video. Everything what I needed to know about terraform for myself. The other tutorials are talking to much about senseless points.
Great tutorial! Go on like this.
I'm a beginner and trust me this is really helping me understand terraform way better than what i paid for on udemy!
I just can't get enough of FCC. You guys are too amazing for words!
Hi, thanks for the course. I had some challenges during on the practice project. (cidr_block and route).
Excellent vedio I have seen in terraform. I took 2 udemi course to learn it.but you gave everything in one. appreciate your time and effort .
Lots of Love & power to freecodecamp!
unbelievable. you just taught terraform in 2 hours and it was extremely easy to understand. Really an excellent video. :)
This course was soooo good. Very well put together, flowed nicely and covered alot of good information with real world examples to get started with Terraform. I have definitely subscribed.
Excellent Video. I am a Data engineering guy and I wanted to learn this TF. No words Excellent.
This should be one of the great videos that I've been watched.
Finally, a tutorial that actually explains to beginners. Some other videos claim to be for beginners and then 5mins into the video, they start pulling steps put of thin air!
Thank you so much for this. This is so simplified that I found this very very helpful!
Look forward to seeing AWS Certified SysOps Administrator course comming soon!!
This video shows us that it is normal to make mistakes, even a guy with such comprehensive knowledge of terraform.
this is such a great introductory course on terraform, thank you awesome people. Next can you do a tutorial on more advanced topics?
Very good course, thank you very much! By the way, PPE key is automatically converted to PPK once added in Putty-- Auth just select Show all files and select the PPE key. no need to use PuttyGen to modify the key.
Thank you for this course. It was awesome. Please can you do another tutorial video with more advanced topics in terraform
yeah, that would be great :)
1:29:30
*** Update ***
resource "aws_eip" "eip-1" {
network_interface = aws_network_interface.UAT-eni.id
associate_with_private_ip = "10.0.0.100"
}
In the latest Terraform AWS provider versions, specifying "vpc = true" is no longer necessary because all Elastic IPs are assumed to be associated with a VPC by default. Therefore, you can safely remove the "vpc" parameter from your aws_eip resource block:
Great session, great technical skills, and teaching style! Top quality congrats and thank you.
This is a solid beginner for anyone interested in learning Terraform.
This was an amazing video. Learned so much from this. Terraform is much easier to use than CloudFormation
I agree 100%
Thank you for simplifying Terraform so effectively. Your breakdown of each concept is truly remarkable.
That was a really nice introduction. Thanks for taking the time.
The depth of this material is astounding. A book I read with related themes sparked a major transformation in me. "AWS Unleashed: Mastering Amazon Web Services for Software Engineers" by Harrison Quill
Great video! Very clear presentation. Not sure if it was mentioned or not, but when you were having a "request timeout" around 1:45:25 when trying to ping the public ip, it is because the security group for the ec2 instance didn't have an inbound rule for ICMP traffic. Thanks for the great content!
By default icmp n all ingress direction ports r blocked, he was doing ssh on port 2
Yes, i noticed how he tried troubleshooting SSH by pinging ec2 instance, which by default is blocked. However, i loved how he realized the mistake looking into his security group. I was waiting for that error cos i saw his SSH ingress on port 2 when setting up terraform template.
Overall, this was an excellent tutorial video. I should add that it makes sense to be familiar with setting up resources using the console, that way, it's easy to transition to terraform files.
Buddy no one can explain the way you did. This is soo in-detail. Thanks a lot.
Thank you so much for your hard work. You are a legend. Your tutoring skill is unreal. Please create a tutorial on Ansible and Grafana if possible.
Outstanding explanation and got an overview of terraform, got hands dirty and got hands on experience by following this tutorial and perfect tutorial for beginner like me. I will definetely subscribe now.
Best intro video in Terraforms for AWS Cloud by far IMO, I'd just add the instance as a dependency for the "aws_eip" as well to avoid any unexpected errors, so the depends_on would look something like "depends_on = [aws_internet_gateway.gw, aws_instance.web-server-instance]".
Great course and I appreciate it was free. In the beginning, you said you would cover authentication/access into AWS without having to use the access key and secret key but I did not see that covered in this video. I'd like to test out some real-life deployments in our company sandbox account but we are only allowed to access the account using federated credentials and we are not allowed to use IAM users accounts.
Excellent introductory guide for someone like me who has no prior knowledge of Terraform.
Great tutorial! Thank you for organizing it into chapters that are easy to find in the video.
brother you are a fantastic, mindblowing lifesaver, no word to say about it..... word would be short for you. plz keep making video like this. plz make more video son terraform.
Remember, you have to hit CTRL + S before doing anything in the terminal, because it just doesn't see what's on your screen, it sees the last thing you saved.
you really saved my day .. I am from Intellij family (Auto save) ...
@@atassun @peter There is a toggle under File menu to turn on auto save.
Thank you for creating this video.
love the way how he delivered the whole lecture.
Loved this video! sanjeev is a great teacher.. I completed his FASTAPI course as well. great way of explaining things ! Thanks sanjeev
Can you help with the link please, would appreciate
Great! One hiccup -
2 years on - could be worth updating with an SSL-Cert and enabling SSL in the apache server in the user_data script....
or mention that the apache server is only going to be serving on port 80... and that browsers are now following that IP defaulting to HTTPs.
This caused me a couple hours of pain, hoping you can help others a little (even if it's just an annotation on the vid)
EOF= End Of File .
Very nice terraform and aws tutorial available in youtube. Thank you 🙏
This is a great course - highly recommend it
I will never ever cancel my small monthly pledge to FCC. You're the best!
Awesome content, you guys are angels in human form.
.
Wow was fully enganged...great tutor didn't think I will finish 2 hours in one go.
Great video! Perfect pace too. I followed along and had almost no issues. Since it's a year later, I used Ubuntu 20.04. Seems by default apache2 doesn't listen on 443, so clicking the web link in the AWS console for the EC2 instance doesn't work. Just change https to http and it will show your message.
Couple notes:
EOF is End Of File. That
Its one of the best Terraform Learning Video which i was able to see in RUclips after referring lots of video , Really Nice video , Thanks for it
This is an incredibly awesome tutorial for Terraform, both for revising the tool or learning it for the very first time. Very nicely explained. Subbed to the channel.
Thanks you very much - Excellent Tutorial. I am planning to apply for a job usingTerraform and I think this is a GREAT addition.
Where can i watch the complete videos? You have a very clear voice.
this is the best Terraform Course in RUclips.
Wow. It escalated quickly. At first you were explaining how to extract an zip archive in Windows and then all of a sudden you were casually messing with the Linux network routing tables
you are the best....thanks and God bless you. I learn terraform in just two hours.
If i remember well from my days scripting with batch files, EOF means "End Of File"
Thanks
Your billing address is visible at 3:02
send him a post card
Excellent course by Sanjeev. He really has the art of teaching. I hope he does a course of python and PowerShell. He is the best at teaching.
for egress_only_gateway_id , in my case it didn't work so i generated an ID in format of eigw-0135......, which fixed the issue.....And yes a really good tutorial....
Now that I look back into VSCode, it's kinda crazy when your instructor gets hyped up for VSCode's built-in terminal lol. VSCode has truly changed the development world
Dislikes are from people who use cloud formation.
Gold.
This's really a very good video to provide overall understanding on Terraform. The person has explained step wise so that anybody can understand if he/she has a basic knowledge on AWS cloud platform. Lots of appreciation.
1:38:52
Ahahah, that's what I'm doing during the deployment to prod ))
LOL!
this video better then chat gpt, i can swear > i try it. THX man for this video
“Now it’s the time to start praying” 😂
This is very thoroughly explained. You are a skilled teacher. Thank you!
Basically just copying from the documentation and not clarifying much beyond that. Very annoying with the typos and mistakes all the time. I watched the video on Terraform backends too since I'm interested but it was just more of the same. You're better off reading the documentation.
Can't thank you enough, earlier I was doing the server setup manually using console, that procedure was ok but reproducing a similar setup for another program was just a time consuming.
Can't wait try this and migrate existing services to terraform
This guy, working hard for all of us, making videos in the middle of the night
Appreciate it!
I guess something that I would like to see added would be how can we break this large file into more modular sized in nested folders/ files style of architecture.
Good job!
The video is excellent. I am trying terraform for the first time and it is really well prepared, I wish you good luck
If the like button has a multiple times hit feature, i would do that for sure...this tutorial is soo great. Thank you !
This is a great course for beginners to Terraform. Thanks a lot to the instructor for taking time to explain Terraform. And thanks to free code camp. This course is better than many paid courses out there
I totally agree
We define the number of instances and state of the infrastructure and terraform will compare it with what is running and actually start stop update and make changes to real infrastructure. That is not only great concept , but actually works😂. Most dev ops people never wrote any program or tried to automated anything. They finally needed someone to do things like this. There should be a UI to display the configuration. A wizard style that Microsoft came up with in th 80s or 90s.