concepts explained very well, great work to continue further with this series 1. create vpc and other basic infrastructure resources ( you alreay did in this video ) 2. in next step create eks cluster in same way like modules and bracnches and cicd approach and then merge with main through pr 3. then deploy different applications on this eks cluster in same way , creating different branches and then merging with main
From your video, I learned many more terraform concepts. I request you make one project for EKS and ECS cluster with VPC network equipment creation using Terraform.
This is so explicit and interesting. Please can you expand on this project. Create 3 or more VPCs, connect them with transit gateway, and create the route tables.
Hello Gauri, at 1:31:41, in the alb module's main.tf, subnets is of type list(string) but it is not in square brackets? whereas security_groups is of type string but it is in square brackets...why is that?thanks
See, in case of subnets the type is list of string which means it is already a list then why mention brackets whereas in case of security groups they are of type string but while mentioning them in the resource definition it should be passed as a list(string) so we mention [ "value which is of type string" ]. I hope it is clear now!
in your another video of VPC creation with TF, you did not mention these many subfolders and you mentioned only VPC module which created subnet, IG, route table and route table association automatically without any defining them in main.tf file... which one is best actually ?
In one video i used pre-defined modules and in another we created them locally. Both the methods are good. It depends which one is preferred by your company.
Wonderful end-to-end setup Gauri! Thank you for patiently explaining. Also, you highlighted a very good practice that we should code and debug module by module .. Just one question - so does using github actions replace the need to use other CI/CD tools like Jenkins pipelines? If you could shed some light on this please. Thanks again.
Hi Gauri, Thank you for the video It has been very helpful to me. However, I have one question: How do you manage sensitive data in Terraform, such as credentials or configurations that should not be hardcoded in the repository?
I just chance on your channel today and you've help resolve some of my challenges. You make complex stuff simple. Good job and well done. I have a question though. You. have a video that uses terraform workspaces without github and creates dev, stage and prod environment EC2 and then the long video about VPC terraform and github actions. I get the gist of the approach but my question is how to use the deploy.yml to trigger different environment being managed by terraform CLI workspaces. I'm tempted to repeat the code in deploy.yml for the three env but don't think that is scalable and efficient use of code and also not sure how to pass the env parameters. Any help?
You can learn the workspaces using my Terraform workspaces video and try to implement it with VPC creation. I won't go for it since it would be more of a repeated stuff
Hello Gauri. I am a newbie on Terraform, and many thanks for you videos and your sharing. I've tried to have a look on the GitHub Link of Project, but i've 404 page not found. it is still online ? thanks. Regards.
@@codewithgauribut the command should be within runner of the job, I think. I only modified this part - name: Terraform apply id: apply run: terraform destroy --auto-approve working-directory: ./Terraform-VPC Thanks for the videos!!
@@codewithgauri like creating Ecs cluster and creating services in that cluster with task and service definitions. Creating I am policy, cloudwatch groups , creating fargate instances, creating target groups, etc using terraform and how to use module concept to that service. How to reuse the code for dev, stage and prod. In our company we using octopus to define env using scope. Finally how to start and stop those Ecs cluster/ services using jenkins job.
Great video, but your modules aren't exactly DRY. Wouldn't it be better to dynamically create ingress and egress rules for security groups using for_each? For example, rather than hard-coding ports 80 and 22? SGs can vary for different instances, eg, if I need a bastion host on the public subnet to connect to my Kube Server on the private network.
bro she explaind in nice way dont put ur suggestion as such ...... its beginner friendly video. let her make it complex at her own way .... dont throw ur opinion ... u seems like those interviewr who demotivated to others,,,,,,aur aise question or suggestion deke hum logo ko bhi confuse mat kar.......nice explaination gauri
Please make video on AWS WAF and how to define rule in it? and please explain what is BOT attack, Ddos attack, Sql injecting and Cross scripting and how to protect Web server from these attacks with help of AWS WAF?
Hi Sister, I am getting this error message, while running the plan │ Error: multiple EC2 Availability Zones matched; use additional constraints to reduce matches to a single EC2 Availability Zone │ │ with module.vpc.data.aws_availability_zone.available, │ on modules/vpc/data.tf line 1, in data "aws_availability_zone" "available": │ 1: data "aws_availability_zone" "available" { │
Awesome stuff, I can't find any video better explained on RUclips than this one
Glad you liked it!
concepts explained very well, great work
to continue further with this series
1. create vpc and other basic infrastructure resources ( you alreay did in this video )
2. in next step create eks cluster in same way like modules and bracnches and cicd approach and then merge with main through pr
3. then deploy different applications on this eks cluster in same way , creating different branches and then merging with main
Sure Rehan...thanks for recommending stuff!🙏🏻
Explained with real-time small project model. Excellent indeed with rare qualities and Hats off to Gauri !!
Glad you found it useful
Amazing! You are first person talk from what is vpc, and what are the definition of resources. This is very good for beginner of AWS developer
Glad you enjoyed it!
You're amazing Gauri. This is a good project to start my GitHub profile building.
Thank you Gauri for this informative project. Really helped me clear all the concepts with hands on learning.
Great
Great vedio I learn a lot of things through this vedio. make projects projects like that it really help us
Thank you, I will
From your video, I learned many more terraform concepts. I request you make one project for EKS and ECS cluster with VPC network equipment creation using Terraform.
You are doing great job gauri
Thanks Nagraj
Awesome doing great job..keep sharing
Sure
Explanation was awesome 👍👍👍
Thanks for sharing knowledge...
Thanks a lot!😊
This is so explicit and interesting. Please can you expand on this project. Create 3 or more VPCs, connect them with transit gateway, and create the route tables.
1:51:23 hi gauri please help my deploy. yml file is showing untracked.
Hi gauri I resolved the issue and completed the project. Thanks for this wonderful explanation. Please upload videos more often.
Just Wowww…🙌🫡
You are the Best and Thanks For sharing Content !! ❤️🔥
Please continue more videos on DevOps Real Time-Scenario Projects !!
Thank you Gauri, you help me learn Terraform easily
thanks Gauri for this knowledgeable videos
Great efforts ..Thanks for sharing the knowledge... really helpful..
Glad you found it useful!✨
Thank you for sharing. Subscribed and looking forward to more tutorials in DevOps topic
Sure...Thanks for subscribing!
thank you for a very informative video! i love ur handwriting btw
You're so welcome!
Excellent Job...Such a Wonderful Session...Way To Go🎉
Thank you so much!
really interesting 🎉
Thank you for this, it helped a lot.
Subscribed
Glad you like it!😃
You’re doing a great job, keep up the hard work!
Thank you! Will do!😊
Hello Gauri, at 1:31:41, in the alb module's main.tf, subnets is of type list(string) but it is not in square brackets? whereas security_groups is of type string but it is in square brackets...why is that?thanks
See, in case of subnets the type is list of string which means it is already a list then why mention brackets whereas in case of security groups they are of type string but while mentioning them in the resource definition it should be passed as a list(string) so we mention [ "value which is of type string" ]. I hope it is clear now!
Very nice . Good explanation , Keep it up.
Thank you so much!! ☺️
Thank you so much for this project
Wonderful project gawri .🎉🎉its helps lot.
Glad to hear that
Great work. Thank you for such good content.
Our pleasure!
Please make more project like this
in your another video of VPC creation with TF, you did not mention these many subfolders and you mentioned only VPC module which created subnet, IG, route table and route table association automatically without any defining them in main.tf file... which one is best actually ?
In one video i used pre-defined modules and in another we created them locally. Both the methods are good. It depends which one is preferred by your company.
@@codewithgauri Thank you that you are still responding to the comments for 1y old video like Ubuntu LTS (long term support) 😊
Great work...amazing project!💯
Thank you! 😊
Wonderful end-to-end setup Gauri! Thank you for patiently explaining. Also, you highlighted a very good practice that we should code and debug module by module .. Just one question - so does using github actions replace the need to use other CI/CD tools like Jenkins pipelines? If you could shed some light on this please.
Thanks again.
Hi Gauri,
Thank you for the video
It has been very helpful to me.
However, I have one question: How do you manage sensitive data in Terraform, such as credentials or configurations that should not be hardcoded in the repository?
There is a way out here. You can use hashicorp vaults to manage credentials
good refresher for me:)
Glad it was helpful! ☺️
I just chance on your channel today and you've help resolve some of my challenges. You make complex stuff simple. Good job and well done. I have a question though. You. have a video that uses terraform workspaces without github and creates dev, stage and prod environment EC2 and then the long video about VPC terraform and github actions. I get the gist of the approach but my question is how to use the deploy.yml to trigger different environment being managed by terraform CLI workspaces. I'm tempted to repeat the code in deploy.yml for the three env but don't think that is scalable and efficient use of code and also not sure how to pass the env parameters. Any help?
Hi Gauri, Thank you so much for the video, in 1:57:32, I cannot see the Actions in Github? Page says Get started with GitHub Actions
Great job Gauri! Can you create a workspaces using this project?
You can learn the workspaces using my Terraform workspaces video and try to implement it with VPC creation. I won't go for it since it would be more of a repeated stuff
👌 and great work 👏👏
Thanks🙌🏻
Hello Gauri. I am a newbie on Terraform, and many thanks for you videos and your sharing. I've tried to have a look on the GitHub Link of Project, but i've 404 page not found. it is still online ? thanks. Regards.
I am facing this issue actually...I don't know why it is not accessible to everyone.
It would be great if you could help me with this
One thing I'd like to add to your pipeline is to create a terraform destroy command just in case
Sure...we can add it
great explanation skills
can you post the Kubernetes cluster & pod creation videos?
While I am git clone , we are getting 443 error can you clarify
Can you please check now?
1000th subscriber 👏 it's me
Maza aay giya ❤❤❤❤❤❤❤❤❤❤❤❤❤😊😊😊😊😊😊😊😊
make a video on Terraform data as well :D
Thank you ❤
Any output section configured for alb?
I think I haven't configured it...but you can do it
thx, very interesting video
Glad you liked it! 😄
Nice explanation..
Thanks! 🙏🏻
Good efforts
Thanks
good video. just one thing. How do I destroy everything I have deployed?
Using Terraform destroy command
@@codewithgauribut the command should be within runner of the job, I think. I only modified this part
- name: Terraform apply
id: apply
run: terraform destroy --auto-approve
working-directory: ./Terraform-VPC
Thanks for the videos!!
@@CarlosAranda-c3w yes that's right
Thank you so much maam
Most welcome 😊
Firstly thanks, also could you please do some videos on s3 buckets and Ecs using terraform modules.
Sure...please let me know the project you want me to make using these resources
@@codewithgauri like creating Ecs cluster and creating services in that cluster with task and service definitions. Creating I am policy, cloudwatch groups , creating fargate instances, creating target groups, etc using terraform and how to use module concept to that service. How to reuse the code for dev, stage and prod. In our company we using octopus to define env using scope. Finally how to start and stop those Ecs cluster/ services using jenkins job.
Great video, but your modules aren't exactly DRY. Wouldn't it be better to dynamically create ingress and egress rules for security groups using for_each? For example, rather than hard-coding ports 80 and 22? SGs can vary for different instances, eg, if I need a bastion host on the public subnet to connect to my Kube Server on the private network.
I wanted to make it a bit simpler...but will consider it from next time...Thank you so much for the feedback...it helps me improve!
bro she explaind in nice way dont put ur suggestion as such ...... its beginner friendly video. let her make it complex at her own way .... dont throw ur opinion ... u seems like those interviewr who demotivated to others,,,,,,aur aise question or suggestion deke hum logo ko bhi confuse mat kar.......nice explaination gauri
U should made on eks module
Please make video on AWS WAF and how to define rule in it?
and please explain what is BOT attack, Ddos attack, Sql injecting and Cross scripting
and how to protect Web server from these attacks with help of AWS WAF?
That's a tough project. I will really love to see that
best
Thanks!
Is it possible to deploy real website
where do you want to deploy your website?
Great work.. keep up it
Thankss!!✨
Hi
Hello
Hi Sister, I am getting this error message, while running the plan
│ Error: multiple EC2 Availability Zones matched; use additional constraints to reduce matches to a single EC2 Availability Zone
│
│ with module.vpc.data.aws_availability_zone.available,
│ on modules/vpc/data.tf line 1, in data "aws_availability_zone" "available":
│ 1: data "aws_availability_zone" "available" {
│
Can you please share your code on gaurishirkande11111@gmail.com
How did you learn it all? I want to become an expert like you😊
Just keep practicing and you would be better than me 😉