I have failed to answer terraform modules questions in couple of interviews. Abhi bro, Now your video made my day better to answer for those questions😎. Thanks is a small word for your efforts, We are simply love you bro😍❣.
@@AbhishekVeeramallaI am network engineer, having 10 months of experience, I am applying for devops even I am getting regret mails I am not getting shortlisted, 😢how to get job for devops for freshers. I am really worried🥺I am following your video. And learning.
To all who are searching for the output after applying: create a output variable file in the root directory and refer to the variable using module.module_name.output_variable_name_in_module..... like output "public_ip" { value = module.ec2_instance.your_output_variable_in_module } Thanks Abhishek for educating us....
Wow! I have had issues understanding this concept of modules practically, even with paid videos. But after watching your Terraform zero-to-hero video for Day 3, the concept of modules became as clear as crystal! Thanks Abhishek...you really can teach! Thank you for the good job you're doing.
Thanks allot Sir for your efforts to make us understanding Modules. After watching this videos , i'm able to write my own terraform script for my project just adding the required inputs by reffering the customised modules from our infrastructure team. Thank you so much Sir for detailed lecturing.🎉
Hi Abhishek sir, this video made me little confusion but i watched it 2times after that i understand and created terraform project. thank you abhi sir.
The way you are managing your schedules for videos with your work is amazing. Nd it's obvious that to deliver such an amazing Content you must be going through learning process from various sources. Hats off to you Bhaiya!! pick up any video from your channel, and boom. Tysm for such a great content!!
❤❤Pranam Guruji❤❤ this Terraform series is getting more interesting. It was fun reading the modules. After reading the modules everything seemed easy🚀🚀
You are making us more educated by give this type contents. Now we will give interview without any fear. We feel more confidante .Me and my Friend always talk about you series we also share and update if someone misses any video, actually we are enjoying your process. Thank you so much😁🤝
When you start teaching DevOps concept it is very interesting to learn and grab the concepts very easy. You won't believe Abhishek sir, when I start watching your You-tube channel I have got interest in learning DevOps. Thank you Abhishek Sir😊❤
Happy 400k Abhishek, You are such an inspiration you'll definitely thrive in this journey. But please don't forget your sense of why in your journey. -Love
Amazing session! At the end I saw that the output was not present while using terraform module. So, tried to do it from my end. Just in the root main file add below output block - Note: this output variable name should not match with that inside ec2_instance module. output "public_ip_address_latest" { value = module.ec2_instance.public_ip_address
You did a great job. I just wanted to check if you have included the important part in your upcoming training videos on how to avoid destroying previously created resources when adding or modifying resources.
46:20 when u did terraform apply ..... why didnt u get the PUBLIC IP at the output ? even tho output.tf file is present inside the modules? Can u please let me know
Hi abhishek, when we do terraform apply at last after creating modules, output is not coming in console.. do we need to explicitly mention it in case of modules..?
Very informative Anna. But in that module topic we have created main.tf and passed the values by referring the ec2 module. But it has not given public ip as output. 45:20
If you observe at 44:01 the output is not shown to user when he/she used modules. If I want to see the output their like earlier what should I do? Please respond.
Abhi,The commitment and dedication of doing the course video is exceptional in spite of your busy work schedules and personal things...take a bow brother
It will be very very helpful if you can kindly make a complete separate video on what are the tools and plugins required for writing all types of codes in Terraform for AWS Infrastructure Administration and troubleshooting and monitoring and mauntainence and management of FSX logic ONTAPP storage backups in AWS using Terraform
After creating this all, atlast Iam not able to see output in the terminal. I also saw in your video that there is no output in the terminal. please explain me why?
This is one of the simplest explaination I could ever found on the modules !! just one question in my mind ; how would the Developer know that what are the required values that need to be added by the developer while using the module ?
Thank you so much for the training videos! I really appreciate the effort you put into explaining the topic. It's incredibly informative and valuable to me. Could you please let me know why the output was not generated when we created the EC2 instance using the module?
ok i have a question here when we actually edit tfvars it will either replace the current instance ryt so how can we use tfvars for 2 or more instances without deleting the current one
Hey abhishek, at time stamp 43.56 if you are fetching values using modules that what is the point of again declaring/providing ami, subnet, instance type values ?
Hi abhishek sir Thank you so much for such amazing content you are providing I have one doubt When we are creating instance using modular approval, why public ip is not getting printed?
Can someone please help me understand why public IP output did not come when executed through module while output.tf is already present inside module location?
Thank u for the great and clear explanation Abhishek. I have a doubt when I called the module, it worked well but what about the output variable? I didn't get that in the output. Do we need to add something extra for output variable to work ?
Hello Sir, What happens when we overwrite the instance_type in .tfvar file from t2.micro to t2.medium. It will update instance from t2.micro to t2.medium or create one new instance.
Hi Abhishek, thank you for the great explanation. I am bit new to terraform. I have a question: can we use terragrunt which can easily handle modularity and dependency in terragrunt.hcl ? Could you please share your thoughts ?
Hi Abhishek, Immense thanks for creating this course and sharing. I do have question on modules. When you ran the module code for reusability, terraform apply did not return the public IP as it should because we have configured it in ec2_instance module. I know I am being beginner at these things but I wanted to know about that. .
Ya same for me also #abhishekveeramalla terraform apply did not return the public IP as it should because we have configured it in ec2_instance module.
Hi Abhishek, I have just started to learn terraform really liked your videos and currently at Day 3 of terraform zero to hero series of yours. I have one small question, If we use module from different private github repo, how will be authentication part done! can you please let me know.
Thanks for the wonderful session @Abhishek.Veeramalla . I have one question : May i know why we have not got the output of "Public IP Address" as out once AWS instance is created using module. I am referring to 45:00 min of this vedio . Whatever it is ,the reason , i am learing everyday a vedio of yours and really making a good progress .
The output public ip address not shown after executing terraform apply command from output.tf. is there any different way to do it ? rest was the best video
Hi Abhishek, first of all thank you for providing such good content. I have one doubt, you mentioned that we can maintain the modules in different private GitHub repo. So how do we configure the GitHub credentials to access these modules in our Terraform script especially when we are deploying our infrastructure using Jenkins pipeline. Thank you
hi abhilash , great video , but in interview i got a question , suppose you have module which we created and or from hashicorp , so in X enviroment you want a resource but in Y enviroment you dont want that resource , how to avoid the any unwanted resources in modules ?
in defining the modules section, can't i just write below code in my main.tf file and the terraform would fetch the instance type and AMI ID from the terraform.tfvars from the folder ./modules/ec2instance ??? Or Do I need to pass these variable values in the main.tf file itself? Please let me know provider "aws" { region = "us-east-1" } module "ec2_instance" { source = "./modules/ec2instance" }
can you teach us that how to make terraform in virtually all these things for example creating ec2 instance and connecting to mobaextram and there installing terraform and using terraform virtually with aws
Create outputs.tf in root directory along with main.tf and paste below content and apply output "public-ip-address-module" { value = module.ec2_instance.public-ip-address }
I was worrying why the output didn't work when used in modules I checked in video too it didn't work here too, just want to know reason if anyone knows or how you fixed it?
The module part didn't give the output of the public ip of ec2 instance created because Abhishek did not create another output.tf file outside the module folder, The output.tf file should have been like this, output "ec2-public_ip" { value = module.ec2_instance.public-ip-address }
Very informative video. Completed hands on practice of this video. If possible make a video on Data Sources in terraform. Data sources are not cleared when I was doing that part.
I have failed to answer terraform modules questions in couple of interviews. Abhi bro, Now your video made my day better to answer for those questions😎. Thanks is a small word for your efforts, We are simply love you bro😍❣.
Great 👍 .. Glad that it helped you.
very nice news . Did you able to clear the interview now ?
Hi,are you getting interview calls these days?
@@sireeshadasari2453no
@@AbhishekVeeramallaI am network engineer, having 10 months of experience, I am applying for devops even I am getting regret mails I am not getting shortlisted, 😢how to get job for devops for freshers. I am really worried🥺I am following your video. And learning.
To all who are searching for the output after applying: create a output variable file in the root directory and refer to the variable using module.module_name.output_variable_name_in_module.....
like
output "public_ip" {
value = module.ec2_instance.your_output_variable_in_module
}
Thanks Abhishek for educating us....
Thanks Mate.
Ya , This is the way it seems. 👍
thanks
Thanks
After I created my first aws instance with terraform, I felt joy. Thanks to you!
Wow! I have had issues understanding this concept of modules practically, even with paid videos. But after watching your Terraform zero-to-hero video for Day 3, the concept of modules became as clear as crystal! Thanks Abhishek...you really can teach! Thank you for the good job you're doing.
You're very welcome!
No b lie...
i.m amazwd by the quality and simplicity of your content sir, I'm learning devops from the past 1 year, your channel makes my deevops learning easier
Glad to hear that
Because of you sir ......i am able to learn terraform in so much detailed ....Thank you so much
You are most welcome
How much ever harder, you make it so simple to understand. I paid fee for a class and still come here to understand stuff . thank you !!
Thank you
Thank you
Thanks allot Sir for your efforts to make us understanding Modules. After watching this videos , i'm able to write my own terraform script for my project just adding the required inputs by reffering the customised modules from our infrastructure team.
Thank you so much Sir for detailed lecturing.🎉
This is awesome 🤩
I am clear about Terraform Modules. Thanks Abhishek sir.
You are most welcome
Really great work Abhishek in creating such informative videos for explaining terraform concepts in detail .
Hi Abhishek sir,
this video made me little confusion but i watched it 2times after that i understand and created terraform project.
thank you abhi sir.
Awesome
Very clear explanation, thank you so much for bringing this terraform series abhishek.
with watching at 1.5x but great content. anything like this when free is just fabulous. Thanks for creating good tech content.
Thank you so much 😀
Exceptional training 🙏🏻🙏🏻
Thank you 🙌
excellent explanation of modules concept with example
Glad it was helpful!
The way you are managing your schedules for videos with your work is amazing. Nd it's obvious that to deliver such an amazing Content you must be going through learning process from various sources. Hats off to you Bhaiya!!
pick up any video from your channel, and boom. Tysm for such a great content!!
Thank you so much 😀
Thank you Abhi. You are my DevOps hero
You are doing an amazing job. Thank you from the bottom of my heart.❤
You are so welcome
❤❤Pranam Guruji❤❤ this Terraform series is getting more interesting. It was fun reading the modules. After reading the modules everything seemed easy🚀🚀
😍😍
You are making us more educated by give this type contents. Now we will give interview without any fear. We feel more confidante .Me and my Friend always talk about you series we also share and update if someone misses any video, actually we are enjoying your process. Thank you so much😁🤝
😍😍😍
Ur content is next level
Thank you sir🙏
Most welcome
When you start teaching DevOps concept it is very interesting to learn and grab the concepts very easy. You won't believe Abhishek sir, when I start watching your You-tube channel I have got interest in learning DevOps. Thank you Abhishek Sir😊❤
Happy 400k Abhishek, You are such an inspiration you'll definitely thrive in this journey. But please don't forget your sense of why in your journey.
-Love
❤️❤️
Amazing session! At the end I saw that the output was not present while using terraform module. So, tried to do it from my end. Just in the root main file add below output block - Note: this output variable name should not match with that inside ec2_instance module.
output "public_ip_address_latest" {
value = module.ec2_instance.public_ip_address
Nice work!
nice bro,thanks
Wow ... finally got a worthy tutorial to learn terraform...
Thanks for dedicating your time and effort
My pleasure
great content for free thanks for you efforts
My pleasure!
Very well-organized session.
😍😍😍
Excellent teaching
Thank you so much 😀
Thank you for great video
You're welcome 😊
You did a great job. I just wanted to check if you have included the important part in your upcoming training videos on how to avoid destroying previously created resources when adding or modifying resources.
46:20 when u did terraform apply ..... why didnt u get the PUBLIC IP at the output ?
even tho output.tf file is present inside the modules? Can u please let me know
Vera Level
👍
liked shared and subscribed for further reach to audience. keep up the good work and Thanks a ton. Great teacher! you know the art of teaching!
Abhishek sir is always best ❤
Hi abhishek, when we do terraform apply at last after creating modules, output is not coming in console.. do we need to explicitly mention it in case of modules..?
great work so much helpful thank you much 👏🙏
best tutor
Thanks
Thanks Abhishek
Most Welcome
Great video Abhishek,your way of explanation was too good.
Very informative Anna. But in that module topic we have created main.tf and passed the values by referring the ec2 module. But it has not given public ip as output. 45:20
same question...
Excellent 👍
Thank you so much sir
Very nice
If you observe at 44:01 the output is not shown to user when he/she used modules. If I want to see the output their like earlier what should I do? Please respond.
U have to create a new output.tf and reference it
Delivery is good. Thank you.. able to grab the Modules concept
@AbhishekVeeramalla in the day3 concept while executing with modules it does show the output of the public ip of the instance
yes i got same error did you found any solution for that
very informative and thank you so much!
Glad it was helpful!
I addicted to your Devops classes ❤ if I have 10m time my hand take me to RUclips and typing Abhishek veeramalla
Keep rocking
loved it....❤❤❤❤❤❤❤❤❤❤❤❤
Thank you ❤❤❤❤
Congratulations Abhishek for 1 lacs subscribers...you deserved for this..
Thank you so much 😀
time 44:55 , output is missing
how get the output?
Thank you so much Abhishek :)
Abhi,The commitment and dedication of doing the course video is exceptional in spite of your busy work schedules and personal things...take a bow brother
Thanks a ton
very much addicted to your videos , learning a lot from this. Please do not stop your contributions at any cost 😀
Thanks, will do!
It will be very very helpful if you can kindly make a complete separate video on what are the tools and plugins required for writing all types of codes in Terraform for AWS Infrastructure Administration and troubleshooting and monitoring and mauntainence and management of FSX logic ONTAPP storage backups in AWS using Terraform
Thanks for this nice explanation, you are next Khan sir 😍
while running the modularized the instance -> Terraform apply doesn't gave any Output (ip_address of instance) ???
simply excellent. kudos
After creating this all, atlast Iam not able to see output in the terminal. I also saw in your video that there is no output in the terminal. please explain me why?
This is one of the simplest explaination I could ever found on the modules !! just one question in my mind ; how would the Developer know that what are the required values that need to be added by the developer while using the module ?
thank you so much for the video .. if need to launch two instance with same module whether we need to use for each or anyother options is there?
Thank you so much for the training videos! I really appreciate the effort you put into explaining the topic. It's incredibly informative and valuable to me.
Could you please let me know why the output was not generated when we created the EC2 instance using the module?
You're very welcome!
thank Abhishek for your selfless teaching, why output is not shown when we modularized the project?
ok i have a question here when we actually edit tfvars it will either replace the current instance ryt so how can we use tfvars for 2 or more instances without deleting the current one
How do you print output values when consuming the modules. You have defined the output variable but that didn’t show the public ip in the output
Hey abhishek, at time stamp 43.56 if you are fetching values using modules that what is the point of again declaring/providing ami, subnet, instance type values ?
Hello Abhishek, this video shows me blur when I open it, is there anything I need to fix from my end.?
Another great video abhishek. Hats of to you for your dedication and your efforts. Keep it up.
Thanks a ton
Hi abhishek sir
Thank you so much for such amazing content you are providing
I have one doubt
When we are creating instance using modular approval, why public ip is not getting printed?
Abhishek, your effort is remarkable and hope for lots of learner. I have clear lots of my doubts.
Any chance for Ansible playlist..
Thanks alot
Can someone please help me understand why public IP output did not come when executed through module while output.tf is already present inside module location?
Thank u for the great and clear explanation Abhishek.
I have a doubt when I called the module, it worked well but what about the output variable? I didn't get that in the output. Do we need to add something extra for output variable to work ?
But after the execution of apply the module the output (public ip) is not show?
Thank you ^^
You're welcome 😊
Hello Sir,
What happens when we overwrite the instance_type in .tfvar file from t2.micro to t2.medium. It will update instance from t2.micro to t2.medium or create one new instance.
Hi Abhishek, Thanks for another awesome course. If it's possible can you please add a session on Terraform cloud as well within this course.
will try
abhishek i have seen shell scrpiting two videos but can make a video on real time content of shell scripting @@AbhishekVeeramalla
can we write.tfvars and assign value rather than inserting it in main.tf, can any answer please/
Hi Abhishek, thank you for the great explanation. I am bit new to terraform. I have a question: can we use terragrunt which can easily handle modularity and dependency in terragrunt.hcl ? Could you please share your thoughts ?
Yes you can
Hi @Abhishek.Veeramalla, where we can store our modules in production env. which is the best practice.
Hi Abhishek, Immense thanks for creating this course and sharing. I do have question on modules. When you ran the module code for reusability, terraform apply did not return the public IP as it should because we have configured it in ec2_instance module. I know I am being beginner at these things but I wanted to know about that.
.
Ya same for me also #abhishekveeramalla terraform apply did not return the public IP as it should because we have configured it in ec2_instance module.
No words to describe you annaya😊
Thank you so much 😀
Hi Abhishek,
I have just started to learn terraform really liked your videos and currently at Day 3 of terraform zero to hero series of yours.
I have one small question, If we use module from different private github repo, how will be authentication part done! can you please let me know.
Thanks for the wonderful session @Abhishek.Veeramalla . I have one question : May i know why we have not got the output of "Public IP Address" as out once AWS instance is created using module. I am referring to 45:00 min of this vedio . Whatever it is ,the reason , i am learing everyday a vedio of yours and really making a good progress .
Create another outputs.tf file in the porject folder and enter below -
output "ec2-public_ip" {
value = module.ec2_instance.public-ip-address
}
The output public ip address not shown after executing terraform apply command from output.tf. is there any different way to do it ? rest was the best video
Hy Abhishek sir thank you so much for this video please make a microservices video i facing issues with microservices
what issue ?
@@AbhishekVeeramalla multiple questions regarding microservices in my devops aptitudes exam
Hi Abhishek, first of all thank you for providing such good content. I have one doubt, you mentioned that we can maintain the modules in different private GitHub repo. So how do we configure the GitHub credentials to access these modules in our Terraform script especially when we are deploying our infrastructure using Jenkins pipeline. Thank you
hi abhilash , great video , but in interview i got a question , suppose you have module which we created and or from hashicorp , so in X enviroment you want a resource but in Y enviroment you dont want that resource , how to avoid the any unwanted resources in modules ?
extensions are not working in vs cloud please make a video on how to install terraform extensions on vs cloud
in defining the modules section, can't i just write below code in my main.tf file and the terraform would fetch the instance type and AMI ID from the terraform.tfvars from the folder ./modules/ec2instance ??? Or Do I need to pass these variable values in the main.tf file itself? Please let me know
provider "aws" {
region = "us-east-1"
}
module "ec2_instance" {
source = "./modules/ec2instance"
}
can you teach us that how to make terraform in virtually all these things
for example creating ec2 instance and connecting to mobaextram and there installing terraform and using terraform virtually with aws
Hi Abhishek , after you modularize the things and do the terraform apply , output is not coming
anyone have answer ??
Which output ?
Create outputs.tf in root directory along with main.tf and paste below content and apply
output "public-ip-address-module" {
value = module.ec2_instance.public-ip-address
}
Beautiful Anna
I was worrying why the output didn't work when used in modules I checked in video too it didn't work here too, just want to know reason if anyone knows or how you fixed it?
Hey, its simple .. u just need to add ouput variable in your root folder and reference the value from module
For example
module.my_module.instance_id
The module part didn't give the output of the public ip of ec2 instance created because Abhishek did not create another output.tf file outside the module folder,
The output.tf file should have been like this,
output "ec2-public_ip" {
value = module.ec2_instance.public-ip-address
}
Thanks, I was stuck on this 😊
Super bro , love your content :)
Thank you so much 😀
if i created a subnet by writing infra.. then how can i keep that subnet id value in this module syntax.. pls tell me bro..
thankyou sir
Most welcome
Very informative video. Completed hands on practice of this video. If possible make a video on Data Sources in terraform. Data sources are not cleared when I was doing that part.
Hi buddy do you have eks module for cluster creation ?