Completed this entire series, Thanks for the explanation. 1. Terraform migration ( using import and then running terraform import command which will create a state file). - This will import the EC2 instance all details which was created manually. - Importing EC2 instance to create a state file. # 2. Terraform drift detection ( if some one manually changed any settings for any resource, then detecting that change is called drift detection). # There are 2 ways to detect it. Scenario 1: Use terraform refresh using a cron job. ( terraform refresh, refershes the recents changes which was done manually to the statefile and keeps it updated. Scenario 2: - A) Use audit/activity logs to see who made changes, if its changed by user and resources is managed by TF, then send an alert using lambda/azure functions and notify. - B) Apply strict IAM rules so that no one can login to console.
Amazing series!!!! This has helped me a lot in quick interview pre. I am a SRE with 6 years of exp working on terraform from close to 5 years on and off. You have amazing straight to the point teaching skills.
Thank you so much for the entire series and this surprise video! I'm so addicted to your teaching style and real-time scenarios you bring in. I really appreciate your time and efforts for all the free DevOps content. God bless you 🙏
Thank you Abhishek for making this video and explaining the import scenario... because these are some of the most commonly asked scenario questions in the interview!
After running >terraform plan -generate-config-out=generated_resources.tf this command I was getting an error saying >Too many command line arguments. To solve this you have to put generated_resources.tf in quotes. So the command would be: >terraform plan -generate-config-out="generated_resources.tf"
I was stuck with this too. ChatGPT was unable to solve this issue for an hour. Thought to check the comments to see anybody else got the same issue. And now its resolved. Thank you!!
Thank you, Abhishek, for this surprise video. I really appreciate it. I would like to request the next series to focus on scenario-based questions for each tool ( Jenkins ,Docker, K8S , AWS) you have covered previously. Thanks
This importing method was not working for me giving error - only managed resources can be imported. I did it another way by writing resource block in main.tf including ami and instance_type. then ->terraform init ->terraform import aws_instance.example instanceId. This generated statefile with all info of aws instance whose id i provided
Hi @abhishek ,i have one questions related terraform import command , If i have import the Ec2 instance using import command and after that try to add one extra volume on particular that instance using terraform ......if i run terraform plan command so it shows first i will destroy the instance and then create and attached this extra volume ......please help to address this issue .
Terraform series is super and more effective. Could you please prepare similar with Azure Cloud. For example, creation of VM, Networking, User data or provisioner, Azure Key vault, Azure blob storage for backend etc... Also some real time project examples.
Hi Abhishek, I have one doubt. sometime back I learned on youtube that to use already created VPC resource in our terraform we use data block. Is this the best way or the one which you explained about terraform import command. or is there any difference in both. Thanks
Abhishek can you please explain that also how we can use resource of one resource and used in other resources and taint and untaint , for_each ,count,count.index, function..but one think i can say all of your series are wonderful..now one can provide this type of knowledge share free pf cost .. thanks alot your inspiration for many people
@abhishekveeramalla Can the Terraform lock concept be used to prevent the multiple users change the infra as in the case of scenario-2 in the video? How can this be explained?
Thanks Abhishek for these wonderful videos. Can you please make some video on Sentinel policies in terraform, as I am facing same Question in the multiple interviews
Hi Abhishek,can you please make a video on complete monolithic/microservice project deployment from setting up the infrastructure in cloud to deploying the app to production by showing the differences among deployments in vms,containers if possible
Thanks for the surprise video Abhishek, really appreciate your hard work. I have a quick question on the 1st scenario. If we want to migrate more than one resource to terraform and not only EC2 instance, how do we achieve that? The command you shared is for resource block and we create a lot of resource blocks to achieve other resources, do we run the command multiple times or do we have a method to achieve this from one command?
Hi Abhishek, Scenario 1: Use terraform refresh using a cron job. ( terraform refresh, refershes the recents changes which was done manually to the statefile and keeps it updated. Where i have to mention cron job?
Very helpful series. I have faced many interview questions that you explained in this series. I am following your all the series and improving my knowledge day by day. I have one doubt in import command. By using terraform import are we able to import on one resource at a time ? and if yes then how we can import multiple resources at one time. Also how to resolve the error "resource already exists" in terraform. Suppose I have main.tf with 5 resources and I deployed that already and after that I made changes in four of them and again deploying using terraform apply then I will get error for that one unchanged resource as its already exists.
Sir One silly doubt, Is there any way to import 1000 resources at a time in terraform without mentioning each and every resource id in the terraform configuration file. For example somethimes we mention (*) for all the contents.
Hi Abhishek, you have installed a CLI and then had connected an instance. Can we use Linux AMI and can use putty to connect and then can access same instance through Linux, could you please confirm is that method is also available to connect?
hi Abhishek, I want to setup Terraform from my client and we're a team of 6 people managing AWS Infrastructure. Can you let me know how should I set this environment and make it secure? For a single user, I can create an IAM User and use the security credentials, but I am sure how to do it for entire team. Should I use Git & Jenkins for automation.
when i try to use this command "terraform plan -generate-config-out=generated-resources.tf" i'm getting an error "Too many command line arguments".After that i tried "terraform plan -out=generated-resources.tf -chdir=C:\Users\Lenovo\Desktop\demo" & "terraform plan -out=generated-resources.tf" but nothing is working still showing Too many command line arguments
hi abhishek, will you explain more about data resource concept. please create video where two different project connect with each other and transfer details or use details of each other or project 1 required details from project2 to run
Thanks Abhishek for wonderful video.. While replicating, I am getting the below error while running terraform init , please suggest which point I missed. Error : Unsupported block type Block of type "import" are not expected here.
@6:47 Abhishek, after running "terraform plan -generate-config-out=generated_resources.tf" to generate a new config file, I am getting this below error. PS D:\Mahi\terraform-zero-to-hero\Day-8> terraform plan -generate-config-out=generated_resources.tf ╷ │ Error: Too many command line arguments │ │ To specify a working directory for the plan, use the global -chdir flag. ╵ Even the hashicorp documentation shows the same. my terraform version is v1.7. how to resolve this? I just followed you until now.
@AbhishekVeeramalla Thank you for the wonderful terraform session. @mahi_mad I got the same error. Just put the double quotes to generated_resources.tf and it will resolve the issue. terraform plan -generate-config-out="generated.tf"
Hi Abhishek. I have watched terraform till day 7 classes. Almost all the things understood but slightly there is confusion on modules and workspaces. I want to know about these deeply. Can u plz guide any resources?
How to setup lambda function can you please do it practically if anyone modify the state file?also could please make a video on lamda function layer and different use cases
hi abhishek sir, thankq for providing this wonderful series of terraform , i hve watched all urs videos of terraform frm day1 . while solving this import senario im getting an error as Error: Too many command line arguments │ │ To specify a working directory for the plan, use the global │ -chdir flag. could u please help to how to resolve it , thnks in advance🙂
Hello Abhishek, In Your video instance is running on N Virginia region.when you are importing the instance in that you provide us-east-1 region. When we are importing configuration that time region mandatory or not? Due to some issue i am not able to do practical that why I am asking this question. Thank You
Hi Abhishek, Could you please let me know if I want to import a S3 bucket, an ec2 instance with a security group attached ( other than default one) which I might have deployed manually,in this case do I have to use three separate import blocks for each of these resources (s3,ec2 and the security group which is attached to the ec2 instance)...i.e. The id field in the import block will have the bucket id, instance id and sg ID or the whole import of three resources can be done from same import block ?
Thanks Abhishek for the amazing content , i was able to learn all the basics of terraform because of you . i just had one doubt so while importing existing resources to terraform we need to have all the id tags of every resource that is existing then ?
Hey Abhishek Thank you so much for this course and all the courses. By learning all your series can someone show 3 years of experience? I mean this is for freshers only or for experienced people also?
Thanks for the Series...great Stuff @AV 👌👍 !!! A QQ , pardon my ignorance ,where does the cron job reside/needs to be created in scenario 2a ?Please lemme know . .
Hello Abhishek...u gave an example of one resource migration ie;Ec2...and how do we migrate multiple resources like S3, vpc, etc,. under one terraform project...and how do we use terraform import command for multiple resources.
Hi abhishek, I have one more question. If terraform command is being executed from personal system of devops person and same user did the change manually. How lambda function will understand because the user is same. Either he did it from console or setup secret in local and perform terraform commands
sir im taking your Devops ZERO TO HERO course , sir there is one Ultimate Shell Scripting Project sir in my case it shows “ zip error , no such directory found “ and also an error occurred (EntityAlreadyExists) when calling the CreateRole operation. sir please help me out in this one i have no one to take any help from , sir u are the only one i can count on me. 🙏🏻😭
Hi Abhishek, i have doubt that can we integrate terraform with jenkins. Can you please make a video on this. Please 🙏🙏 Many thanks for your efforts and the technics you use to make understand in easy way. By asking questions your self on behalf of viewers... Once again thank you.
Hi Abhishek, I have 9 yrs exp. On-prem contact center technology which is now old lagacy technology. Hence, I started preparing for Devops from last 1 year. By following your videos, i have learnt many cloud devops concept. Now, recently i have cleared Interview in one of the good product based company and waiting for offer letter only i have shown them 3 yrs experience in devops but i only learnt these from your channel. I am little nurvous as i selected based on my learning. So will it be hard for me to survive in the company because they consider me 3 yrs exp. Devops engineer ? Please advise
Completed this entire series, Thanks for the explanation.
1. Terraform migration ( using import and then running terraform import command which will create a state file).
- This will import the EC2 instance all details which was created manually.
- Importing EC2 instance to create a state file.
# 2. Terraform drift detection ( if some one manually changed any settings for any resource, then detecting that change is called drift detection).
# There are 2 ways to detect it.
Scenario 1: Use terraform refresh using a cron job. ( terraform refresh, refershes the recents changes which was done manually to the statefile and keeps it updated.
Scenario 2:
- A) Use audit/activity logs to see who made changes, if its changed by user and resources is managed by TF, then send an alert using lambda/azure functions and notify.
- B) Apply strict IAM rules so that no one can login to console.
😍😍🚀
What should i do next considering Azure Cloud.
DevOps series completed
TF series completed
Thanks!!!
You are making so many things for someone who is having an interview.kudos to you brother 👍🏻🙌🏻
Thanks for recognising
Thanks! Finished all 8 episodes 😊
Amazing 😻
Amazing series!!!! This has helped me a lot in quick interview pre. I am a SRE with 6 years of exp working on terraform from close to 5 years on and off. You have amazing straight to the point teaching skills.
Thank you so much for the entire series and this surprise video! I'm so addicted to your teaching style and real-time scenarios you bring in. I really appreciate your time and efforts for all the free DevOps content. God bless you 🙏
Thanks a lot
Thank you Abhishek for making this video and explaining the import scenario... because these are some of the most commonly asked scenario questions in the interview!
Thanks a lot
After running >terraform plan -generate-config-out=generated_resources.tf
this command I was getting an error saying >Too many command line arguments.
To solve this you have to put generated_resources.tf in quotes. So the command would be:
>terraform plan -generate-config-out="generated_resources.tf"
Thanks.. It is working !!!
I was stuck with this too. ChatGPT was unable to solve this issue for an hour. Thought to check the comments to see anybody else got the same issue. And now its resolved. Thank you!!
Thanks so much, Abihishek, I just completed the series and it has been super helpful. You are the best man. Thanks
Completed end to end two playlist, learned lot from you gained very much knowledge
Thank you Abhi Bro
🚀
Thank you, Abhishek, for this surprise video. I really appreciate it. I would like to request the next series to focus on scenario-based questions for each tool ( Jenkins ,Docker, K8S , AWS) you have covered previously.
Thanks
I will try my best
Thank you Abhishek youn just changed my life with this real scenario questions and answers, I appreciate it
Hey Abhishek,
Thanks for this awesome tutorial, I had interview yesterday on terraform and got selected today by following ur tutorials. Many thanks🎉
Hearty Congratulations, Awesome news 😎
@@AbhishekVeeramalla thanks guru ji
@@aniruddhatope2388 did you served 90 days notice period?
I am really thank full to you for this act of greatness. kudos to you brother.
thanks for the whole series, great introduction to terraform
Glad you like them!
Thank you so much @abhishek great explanation
My pleasure
this is a great Terraform Series Abhishek! 🥰😍 keep rocking as usual..
Thank you so much 😀
Thanks Abhishek. It was very nicely explained based on the real scenario.
Thank you Abhishek for this scenario based video
😍😍
Thank you for this scenarios base interview question explanation.
thank you for this scenario based question it makes better to explain in the interview
Welcome
Completed...!
Thanks Abhishek..
Thank You Abhishek bhai for this great content
Most welcome
Thanks Abhishek for all your series
Thanks a lot !!
Thank you Mr Abhishek.
Welcome
Thank you so much Sir, God bless you
Welcome
thank you Sir very nice explaination
You're most welcome
Thanks Abhishek for making this vid its really helpful to me
This importing method was not working for me giving error - only managed resources can be imported. I did it another way by writing resource block in main.tf including ami and instance_type. then ->terraform init ->terraform import aws_instance.example instanceId. This generated statefile with all info of aws instance whose id i provided
drift detection :- i have faced this scenario but learned the technical term today.
Nice
Hi @abhishek ,i have one questions related terraform import command , If i have import the Ec2 instance using import command and after that try to add one extra volume on particular that instance using terraform ......if i run terraform plan command so it shows first i will destroy the instance and then create and attached this extra volume ......please help to address this issue .
Hi, here your are explain single instance but suppose EKS cluster have mater and worker nodes how can we approach
Terraform series is super and more effective. Could you please prepare similar with Azure Cloud. For example, creation of VM, Networking, User data or provisioner, Azure Key vault, Azure blob storage for backend etc...
Also some real time project examples.
you would have share some more scenario based questions. I have addicted to your teaching Maastaru ❤
Thank you so much 🙏🙏 #DevopsDictionary 🤩
😍😍
Hi Abhishek, I have one doubt. sometime back I learned on youtube that to use already created VPC resource in our terraform we use data block. Is this the best way or the one which you explained about terraform import command. or is there any difference in both.
Thanks
Thank You Abhishek 🙏🙏
Welcome
Thank you sir. Please also make a short video on scenario 2b
It takes a lot of time.. will try
Abhishek can you please explain that also how we can use resource of one resource and used in other resources and taint and untaint , for_each ,count,count.index, function..but one think i can say all of your series are wonderful..now one can provide this type of knowledge share free pf cost .. thanks alot your inspiration for many people
Will try
Hi Abhishek, thank you so much for the series, please consider above topics also.
Thanks Abhishek 🙂
@abhishekveeramalla Can the Terraform lock concept be used to prevent the multiple users change the infra as in the case of scenario-2 in the video? How can this be explained?
Thanks Abhishek for these wonderful videos. Can you please make some video on Sentinel policies in terraform, as I am facing same Question in the multiple interviews
Hi Abhishek,can you please make a video on complete monolithic/microservice project deployment from setting up the infrastructure in cloud to deploying the app to production by showing the differences among deployments in vms,containers if possible
All the things are already available on the channel
Thanks for the surprise video Abhishek, really appreciate your hard work. I have a quick question on the 1st scenario. If we want to migrate more than one resource to terraform and not only EC2 instance, how do we achieve that? The command you shared is for resource block and we create a lot of resource blocks to achieve other resources, do we run the command multiple times or do we have a method to achieve this from one command?
Same method, just add all the resources and run that command.
Hi Abhishek,
Scenario 1: Use terraform refresh using a cron job. ( terraform refresh, refershes the recents changes which was done manually to the statefile and keeps it updated.
Where i have to mention cron job?
😃 I wanted good answer for this question of migration and I got it … 🎉🎉🎉 Thank you 🙏🏼
Just a doubt after day 8 y in playlist I’m seeing directly day 28 can someone please explain is something I’m missing here
Hi, After DAY-8, its starting DAY-24. How can get those missing videos from DAY-9 to DAY -23
Very helpful series. I have faced many interview questions that you explained in this series.
I am following your all the series and improving my knowledge day by day.
I have one doubt in import command. By using terraform import are we able to import on one resource at a time ? and if yes then how we can import multiple resources at one time. Also how to resolve the error "resource already exists" in terraform. Suppose I have main.tf with 5 resources and I deployed that already and after that I made changes in four of them and again deploying using terraform apply then I will get error for that one unchanged resource as its already exists.
Good one Abhishek....
😍
Sir One silly doubt, Is there any way to import 1000 resources at a time in terraform without mentioning each and every resource id in the terraform configuration file. For example somethimes we mention (*) for all the contents.
Nice job!sir! i have been asked for the first secnario.
thank you Abhishek for sharing the info. if possible can you do demo 2b (solution for draft detention)
like you said audit logs using lambda
Please add more viedo on terraform for_each,count ,count.index and function ,looping , taint, untaint, dynamic block,local
Will try
Thank you so much your doing wonderful work !
You are amazing...
Hi Abhishek, you have installed a CLI and then had connected an instance. Can we use Linux AMI and can use putty to connect and then can access same instance through Linux, could you please confirm is that method is also available to connect?
Yes u can
geat work abhishek
Thanks
much needed video thanku abhishek
hi Abhishek,
I want to setup Terraform from my client and we're a team of 6 people managing AWS Infrastructure. Can you let me know how should I set this environment and make it secure? For a single user, I can create an IAM User and use the security credentials, but I am sure how to do it for entire team. Should I use Git & Jenkins for automation.
Yes u can do that
U should be moving to gitops and use aws assume roles
Hello Abhishek, can you please explain what is Terragrunt? What are its uses?
Noted
when i try to use this command "terraform plan -generate-config-out=generated-resources.tf" i'm getting an error "Too many command line arguments".After that i tried "terraform plan -out=generated-resources.tf -chdir=C:\Users\Lenovo\Desktop\demo" &
"terraform plan -out=generated-resources.tf" but nothing is working still showing Too many command line arguments
Please check the version of terraform u r using
Run the plain command no xtra chdir ,
@AbishekVeeramalla bro, i recently started your devops course , first we need to complete the AWS and then the devops playlist or vice-versa
hi abhishek, will you explain more about data resource concept. please create video where two different project connect with each other and transfer details or use details of each other or project 1 required details from project2 to run
Noted
Thanks Abhishek for wonderful video..
While replicating, I am getting the below error while running terraform init , please suggest which point I missed.
Error : Unsupported block type
Block of type "import" are not expected here.
@6:47 Abhishek, after running "terraform plan -generate-config-out=generated_resources.tf" to generate a new config file, I am getting this below error.
PS D:\Mahi\terraform-zero-to-hero\Day-8> terraform plan -generate-config-out=generated_resources.tf
╷
│ Error: Too many command line arguments
│
│ To specify a working directory for the plan, use the global -chdir flag.
╵
Even the hashicorp documentation shows the same. my terraform version is v1.7. how to resolve this? I just followed you until now.
@AbhishekVeeramalla Thank you for the wonderful terraform session.
@mahi_mad I got the same error. Just put the double quotes to generated_resources.tf and it will resolve the issue.
terraform plan -generate-config-out="generated.tf"
Hi Abhishek. I have watched terraform till day 7 classes. Almost all the things understood but slightly there is confusion on modules and workspaces. I want to know about these deeply. Can u plz guide any resources?
How to setup lambda function can you please do it practically if anyone modify the state file?also could please make a video on lamda function layer and different use cases
Hi Bro, Do we need to login to terraform or how it will work? I mean to create resources or run terraform commands in organisations. ❤
we can make use of sentinal policy for best practices.
Could you please what can be achieved using these policies??
hi abhishek sir, thankq for providing this wonderful series of terraform , i hve watched all urs videos of terraform frm day1 . while solving this import senario im getting an error as
Error: Too many command line arguments
│
│ To specify a working directory for the plan, use the global
│ -chdir flag.
could u please help to how to resolve it , thnks in advance🙂
Please share the steps on what you did ?
Tq fr the response
After terraform init and used cmnd like terraform plan -generate-config_out=generated _resources.tf
Thn I got the above error
Do you knkw any oroject where we can try to perform the migration from cloudformation to terraform
Hello Abhishek, In Your video instance is running on N Virginia region.when you are importing the instance in that you provide us-east-1 region. When we are importing configuration that time region mandatory or not? Due to some issue i am not able to do practical that why I am asking this question.
Thank You
Region should be same, u will have those in prividers block
Hi Abhishek,
Could you please let me know if I want to import a S3 bucket, an ec2 instance with a security group attached ( other than default one) which I might have deployed manually,in this case do I have to use three separate import blocks for each of these resources (s3,ec2 and the security group which is attached to the ec2 instance)...i.e. The id field in the import block will have the bucket id, instance id and sg ID or the whole import of three resources can be done from same import block ?
Hi Abhishek, will you help out to understand concept of data "terraform_remote_state" with example.. Thank you
completed this series!
Thanks Abhishek for the amazing content , i was able to learn all the basics of terraform because of you . i just had one doubt so while importing existing resources to terraform we need to have all the id tags of every resource that is existing then ?
Yes, definitely
Hey Abhishek Thank you so much for this course and all the courses. By learning all your series can someone show 3 years of experience? I mean this is for freshers only or for experienced people also?
Yes sure
Thank you😊
Thanks Abhishek
At 15.45 sec....you could have given a better example, rather than person leaving the org will mess up the configuration....
Could you please prepare a detailed course on LINUX and scripting
I think the videos on the channel are enough for linux and shell.
Thanks for the Series...great Stuff @AV 👌👍 !!! A QQ , pardon my ignorance ,where does the cron job reside/needs to be created in scenario 2a ?Please lemme know . .
On any linux server ..it should be running periodically right.
U can use aws lambda also
Hello Abhishek...u gave an example of one resource migration ie;Ec2...and how do we migrate multiple resources like S3, vpc, etc,. under one terraform project...and how do we use terraform import command for multiple resources.
Import blocks, yes the problem is u need to generate for each resource..u can use loops for each individual resources may be
How the cross-region configuration can be done using terraform?
Simlarly in case of Azure We can use Azure Activity logs who have done the changes whethter it is a service principal or an AD user . Am i Correct ?
Hi Abhishek
Can you a make a video on how to run Jenkins on kubernetes?
Ok will try
@@AbhishekVeeramalla thank you
Hi abhishek, I have one more question. If terraform command is being executed from personal system of devops person and same user did the change manually. How lambda function will understand because the user is same. Either he did it from console or setup secret in local and perform terraform commands
Cloud trail in aws gives the agent from where the request came from
thankyou sir
Thank you,Abhishek. It's a great course.what terraform certification can we complete with helpful of this course?
Thank you ^^
sir im taking your Devops ZERO TO HERO course , sir there is one Ultimate Shell Scripting Project sir in my case it shows “ zip error , no such directory found “ and also an error occurred (EntityAlreadyExists) when calling the CreateRole operation. sir please help me out in this one i have no one to take any help from , sir u are the only one i can count on me. 🙏🏻😭
Hi Abhishek, i have doubt that can we integrate terraform with jenkins. Can you please make a video on this. Please 🙏🙏 Many thanks for your efforts and the technics you use to make understand in easy way. By asking questions your self on behalf of viewers... Once again thank you.
U can integrate with any CI tool, hashicorp/terraform has docker image too so its easy
Azure or Aws which have more demand and get good hike and package!?
Can i get a job If i learn aws and devops as a fresher. Please let me know.
Yes
@@AbhishekVeeramalla thank you
Thanks Abhishek
Thank you Abhishek. I have a question If tf state file got deleted by mistake how can we get it back?
Best practice is to use backend with version control. Delete means need to play with this import
❤❤❤
Thanks
hi abhishek in git there is no content for day 8 session? may i know the reason?
It is a scenario based video, difficult explain that in docs.
Where we can get that examples? Is there any separate repo for that?
Hi Abhishek thanks for the session, but how to migrate from one cloud service provider to other public services provider
That's a difficult ask, u need to map service to service and should rewrite the modules/ resources
What if statefile is messedup wantedly
can we get state file without unnecessary things by import command?
What do u mean by unnecessary? Every feild for aws resource is important
@@AbhishekVeeramalla8:47 like required fields , optional field..why because we are getting huge file when we import
U can't pretty format u will get all the junk
thank you is not enough anhishek
😍
Hello sir you dev ops playlist is enough to get a job?
Hi Abhishek, I have 9 yrs exp. On-prem contact center technology which is now old lagacy technology. Hence, I started preparing for Devops from last 1 year. By following your videos, i have learnt many cloud devops concept.
Now, recently i have cleared Interview in one of the good product based company and waiting for offer letter only i have shown them 3 yrs experience in devops but i only learnt these from your channel.
I am little nurvous as i selected based on my learning. So will it be hard for me to survive in the company because they consider me 3 yrs exp. Devops engineer ?
Please advise
Bro how is your experience now? Is everything alright?