Best video on youtube to understand modules and how to use them from main.tf file. By following this video I was able to use the module concept in my azure terraform script
Awesome video sir...by seeing this video only i got the confidence that i can clear interview as a experienced in Terraform :) i did practice also and all worked fine :) now trying to create more complex infra Structure and i will see all other your videos on Terraform :)
Well composed video series. Teach some more advanced topics on AWS using Terraform and basic topics using Terraform on various cloud providers. My suggestion is to use tabs side by side (or) up and down in Atom editor , instead of switching between the tabs by clicking in the directory pain (Left to the screen). Thank you
Hi sir, Which function is used for spin up a VMs Multiple times.. Use case: Step 1: spin up 1 VM, Step 2: spin up 2 VMs (I don't want to lose vm which is spin up in step 1) After success. total I have 3 VMs. Then Step 3: spin up 5 Result should be 5+3 =8 What's the best way to spin up new VMs along with existing VMs.
Excellent! In newer versions of Terraform it appears that they've added strict variable name checking. How would you get past this? Error: Variable 'vpc_cidr': duplicate found. Variable names must be unique.
Hi, Here we can test if particular resource is created or not on aws free account, how do we have to test this if we are working in a team and Dev environment, Does team use a single account?
Hello sir.. Nice explanation.. I have 1 question regarding lambda deployment. Here is the scenario: I want to deply lambda functions with different names in different environment but with the same aws account. How can I achieve this? Because each lamndas will have unique urn that I need to provide in lambda_config block in cognito user pool resource creation through terraform. Please guide. Thanks a lot
just wonder what atom package you are using which shows the autocomplete of your writing. so when you start writing "var"... your autocomplete shows variable.
Sir, I like your videos very much, I have one question for you. I wanted to launch 30 instances in 3 different availability zone's. Can we do this using interpolation? Please make vedio on this or a simple comments is also fine.
Good Explanation with great content Sir, but i have one question for you...you have explained all the things for single instance. If we need to create 10 instance then we need to create 10 different project or directory or we can use single directory. I am very confused with this. Please help me.
Excellent content! I have couple of questions. In current design, you have to run terraform init in each env module (dev, prod). Is it possible to avoid this by using terraform workspaces? Is it possible to have .terraform in the root directory and when you need to apply dev or prod environment, you would just run terraform apply on that specific environment module?
Hi, nice explanation how are you getting the automatic prediction when typing in atom should we install any configurations from atom..If so please tell me how to proceed with that.
Sir, how can we re-use the VPC-ID and subnet-ID from the modules when the VPC CIDR is completely different in the dev environment (192.168.)? I did not understand.
Hi sir, You are doing a great job, very good video :) Iam just wondering how can I refer tags from main instead of putting it in the ec2 module. I want to do it like in the dev folder I want vars file, tags file and main file >> and all these are refering to the ec2 module!' Can we do something like that?
This is very useful and far better that all other videos which focuses on jargon instead of the fundamental concepts. Thanks a lot Sir
The best training on modules. Now I understand modules
contact us online classroom training's & project support please contact phone number +919886611117
Best video on youtube to understand modules and how to use them from main.tf file. By following this video I was able to use the module concept in my azure terraform script
Glad it was helpful!
One of The Best Devops Videos. Thanks A lot Sir.
At last - somebody explaining different env setups as well! Great stuff!
Top notch instructor.
I thoroughly enjoyed and learned many things watching your quick video, and I hope you have additional videos on aws terraform. Thank you very much!
better than any tutorial i have ever came across! this helped me in a pinch! thank you!
Thank you for this video. You helped me solve my module issues.
I like this because you are showing how to use the documentation and build your infra from scratch
Your way of teaching is awesome 😍😀
Thanks a lot 😊
Very Nicely explained. Thanks you Sir.
Finally i understand how to use modules.
Found this video just at the right time. Thanks.
Hari sir, Many many thanks for explaining the concepts so very nicely. Great delivery!
Great job Hari!
Thank you
Awesome video sir...by seeing this video only i got the confidence that i can clear interview as a experienced in Terraform :) i did practice also and all worked fine :) now trying to create more complex infra Structure and i will see all other your videos on Terraform :)
Good work. Fantastic video with simple and non-complicated explanation. Thank you!
I love your style of teaching. Keep it up. thanks
Thank you
You made it very easy to understand!! Kudos!! 👍
Glad it was helpful!
Really good explanation sir!! The session was helpful to get better clarity on modules!!
Keep watching
Thank you sir for all the videos. Your tutorials are very helpful.
Thanks so much for this video. This is really useful, helpful and easy to understand how to create module and utilize it.
This is very clear and very helpful. Well done I am subscribing!
Awesome, thank you!
I appreciate the explanation. This method is useful for beginners.
Thanks to your explanation I can understand the module
Good idea to run "terraform validate" to check for syntax errors, etc
Exelent collection of videos on Terraform basics, thanks a lot!
You're very welcome!
Good video because focus on practical approach.
Yes, thanks
Thanks for the details. Very helpful
Glad it was helpful!
Thank you so much, clear & precise
Well composed video series. Teach some more advanced topics on AWS using Terraform and basic topics using Terraform on various cloud providers. My suggestion is to use tabs side by side (or) up and down in Atom editor , instead of switching between the tabs by clicking in the directory pain (Left to the screen).
Thank you
excellent video. very helpful. Thanks Sir
Useful knowledge article
Glad you think so!
This is such a good explenation, well done!
Great video, you shou run ‘terraform fmt’ and ‘terraform plan’ before running apply to check any syntax error
Thanks a lot!! Great teacher! Great content. Very useful for Dummies like me.
very good explanation and demonstration
Extremely nice video.thanks
thankq so much sir nice video , please do same more videos keep it up
Very clearly explained. 👏🏿👏🏿👏🏿
Excellent explanation.. 👏
Thank you 🙂
Thank you so much!!!
This is really helpful and explained in better way !! :)
Excellent explanation , thank sir
Hi , the advanced topics on terraform were awesome. I have request to add testing frame work for terraform before its deployed to cloud.
Thanks much... such a neat explanation Sir!!
Most welcome!
it's very clear explain..can you provide video for Work space for multiple environment ..
Nice explanation , Thank you ,
Exactly what I needed. Thanks!
Great demonstration indeed. Just wondering on how we can handle IAM roles and policies. Should we make them to modules too ?
yes we can
excellent content!!
Glad you enjoyed it
This is a very good video. Thanks
Thanks for the video. Much helpful
Thank you sir , very informative video
Glad you liked it
Good work! Thank you!
super explanation..
Thank you 🙂
Hey how to add user_data into ec2 instances?
Put following attribute under aws_instance resource
user_data = file("apache.sh")
"apache.sh" should contain user_data script
@@JavaHomeCloud Hey i want to controly ingress bound in security groups by allowing my own ip tp acess the instance
Thank you so much. This is good start for beginners.
Ty
thanks very good tutorial
Very useful
What excelent content! Thanks a lot!
My pleasure!
what if we dont want a resource in one environment and not in other env ? when using common module ?
Very usefull vídeo, thank you
Hi sir,
Which function is used for spin up a VMs
Multiple times..
Use case:
Step 1: spin up 1 VM,
Step 2: spin up 2 VMs (I don't want to lose vm which is spin up in step 1)
After success. total I have 3 VMs.
Then
Step 3: spin up 5
Result should be 5+3 =8
What's the best way to spin up new VMs along with existing VMs.
Excellent! In newer versions of Terraform it appears that they've added strict variable name checking. How would you get past this? Error: Variable 'vpc_cidr': duplicate found. Variable names must be unique.
Please make a video on terraform version constraint
Many facing issues while updating version in templates
Nicely explained . I have one query how to pass Access Key and Secret Key ??
Add more information to your query.
This is a good course!!
Hi, Here we can test if particular resource is created or not on aws free account, how do we have to test this if we are working in a team and Dev environment, Does team use a single account?
You are the guy! Thx!!!
Awesome 👍
Hi Sir, Its really useful video. What if I want to use an existing VPC and subNet? Do I still need to create any separate modules for VPC?
Is there any certification available from Terraform specific to AWS cloud?
Hello sir.. Nice explanation..
I have 1 question regarding lambda deployment. Here is the scenario: I want to deply lambda functions with different names in different environment but with the same aws account. How can I achieve this? Because each lamndas will have unique urn that I need to provide in lambda_config block in cognito user pool resource creation through terraform. Please guide.
Thanks a lot
just wonder what atom package you are using which shows the autocomplete of your writing. so when you start writing "var"... your autocomplete shows variable.
I am using 'language-terraform 0.95' (github.com/cmur2/language-terraform)
excellent!!
Hello, Great video. Quick question. Is it possible for you to show how to implement terraform workspaces in a project?
Yes, soon
Sir can u do terraform module with latest version
very nice , beautiful .
Thanks for the video, its very helpful for learners.
One question: Where did you pass AWS credentials for terraform to access the account??
www.terraform.io/docs/providers/aws/index.html
Sir, I like your videos very much, I have one question for you.
I wanted to launch 30 instances in 3 different availability zone's. Can we do this using interpolation? Please make vedio on this or a simple comments is also fine.
Amazing
Good Explanation with great content Sir, but i have one question for you...you have explained all the things for single instance. If we need to create 10 instance then we need to create 10 different project or directory or we can use single directory. I am very confused with this. Please help me.
Just increase the count variable.
Very helpful. Thank You.
Hi Sir, I am unable to do this in Azure. is there any way you can help me?
Hi Hari ..can you help me how I can watch all your Terraform videos . Please help all your stuff are really good
Excellent content! I have couple of questions. In current design, you have to run terraform init in each env module (dev, prod). Is it possible to avoid this by using terraform workspaces? Is it possible to have .terraform in the root directory and when you need to apply dev or prod environment, you would just run terraform apply on that specific environment module?
Yeah, Using terraform workspaces we can have single .terraform folder with multiple state files for each environment(dev,prod,stg(
Workspaces are not the best for implementing total isolation. File layout is the best, just as described above. Cheers
Brilliant again, star!
Hi, nice explanation how are you getting the automatic prediction when typing in atom should we install any configurations from atom..If so please tell me how to proceed with that.
Yeah, you have to download the terraform package in atom.
Sir, how can we re-use the VPC-ID and subnet-ID from the modules when the VPC CIDR is completely different in the dev environment (192.168.)? I did not understand.
Hi.. we can use create_vpc = true
Nice video....Thank you!
Really Nice
Excellent!
There is no use of string interpolation. You can directly use :
cidr_block. =. var.vpc_cidr
That is introduced from terraform 0.12 onwards
how do you link this to your AWS account?
I've configured aws access key id and secret access key using AWS CLI
Is there any prerequisites to learn this
Abdul Shaikh
AWS knowledge is must
Nice presentation. Any reason for "Error: Unknown root level key: provide"
It is not provide it should be provider
Hi sir,
You are doing a great job, very good video :)
Iam just wondering how can I refer tags from main instead of putting it in the ec2 module.
I want to do it like in the dev folder I want vars file, tags file and main file >> and all these are refering to the ec2 module!'
Can we do something like that?
yes it’s doable