Sir........... Your questions are way way ahead of others... The topics which you have discussed here are the key essentials for any devops engineer. Kudoos to your hard work
This one of the best and finest presentations I've seen to date showing all the steps with 100% full explanations ! I will share video with all my colleagues & subscribe.
Hey Rohit, Thanks for making these kind of videos. It really helps us to understand the concepts well and also, it gives an idea on how to answer in an interview!!
Hi Ganesh, Null represents the absence of a value or omission. For example, if you set a resource argument to null, Terraform will treat it as if you had omitted it completely.. And on the other hand provisioners are used to run scripts or commands on local or remote machines as part of the Terraform plan-apply-destroy cycle. Thanks!
Oh nice clarity. Is it possible if you can make a vdo on how we can use an exported json file and use that in terraform to import and create the resource or integrate with some azure pipeline.
This video was really informative 👌 it actually gave me the practical understanding of things work in terraform... Thanks for making this one.. I hope to see more videos like this in future 🙏
Thank you so much sir for the questions and solutions. Q. Where do the backup file gets created if we use backend to store state file? In that case too will it be created in local?
Hello Neeharika, If your are using backend block for example az storage account, in such cases you need to enable versioning to create version of your state file.. Thanks!
Wonderful videos, Just amazing for someone who cannot crack scenerio based questions in the interview. When time permits, can you please create a similar vidoe on Kubernetes as well.
I have question, just imagine if we have only the state file available and the terraform files are deleted by mistake. Assume if this is in my local and i don't have any other access to get the terraform module files. Then is there a way we can recover automatically using the state files?
I have one interview question. so the question is like :- There is one tf configuration file written by an employee A to create some resource. He goes on break and meanwhile employee B create the same resource manually. When A comes and try to create the resource via terraform there is duplicate resource error. So he does terraform import. Now what can be the solution to prevent this situation from happening in future?
Hello Suruchi, In such cases if the resource is created manually then the same needs to be updated in terraform configuration, post which by running terraform refresh the state file would be updated to match the current state…
It was really good thanks. I have some doubts on storing creds or how we should pass the creds for aws provider to get connected As part of my practice I followed: 1.hardcoding them in provider block 2. use env varibales 3.use ./profile by storing them in a file I know the above mentioned are not acceptable in a real time projects I would like to know if you can help me in understanding how real time project authentication takes place where if we have a set 10 to 20 employees who need to connect do we go with a common service account creds in this case? Could you please throw some light on this ? Thanks
Hello Bharath, In real time there are several ways of storing critical information such as Passwords, Certificates etc One of the way you can try would be HashiCorp Vaults to store and access your secrets Thanks…
Sir........... Your questions are way way ahead of others... The topics which you have discussed here are the key essentials for any devops engineer. Kudoos to your hard work
Thanks! Naveen for the kind feedback
Do like, share and subscribe
The BEST RUclips video I have ever seen with live explanation. You are the BEST
Thanks! for the valuable feedback…
This one of the best and finest presentations I've seen to date showing all the steps with 100% full explanations ! I will share video with all my colleagues & subscribe.
Thanks! Mo for the kind of words and valuable feedback…
This is one of the best video I seen on Terraform interview questions. I loved it.
Thanks! For the valuable feedback…
Found solution for all the questions running in my brain, thank you sir
Great! Do check the interview question playlist for more such questioners..
You're really thorough with Terraform, thanks for enlightening us with your expertise.
Thanks! Anubhav for the valuable feedback
Hey Rohit,
Thanks for making these kind of videos. It really helps us to understand the concepts well and also, it gives an idea on how to answer in an interview!!
Thanks for the valuable feedback
Excellent video, these kind of real time videos are required for job aspirants.
Thanks! for the valuable feedback
The best video i have ever seen.
Thanks! for your valuable feedback…
One of the best video. Thank you for sharing. If possible please make more terraform interview question answer video.
Thanks! for your valuable feedback…
Really awesome, thoroughly enjoyed watching the video
Thanks!
You teach very well n in detailed way which is understandable thanks for ur effort
Thanks! Ankit for the valuable feedback
Hi, Thanks for your awesome job. Need one clarity on null resource. In what cased will use null resource and how its different from provisioner?
Hi Ganesh,
Null represents the absence of a value or omission. For example, if you set a resource argument to null, Terraform will treat it as if you had omitted it completely..
And on the other hand provisioners are used to run scripts or commands on local or remote machines as part of the Terraform plan-apply-destroy cycle.
Thanks!
Dear, this wonderful explanation.. Thanks a lot!!
Thanks! For the valuable feedback…
Very Detailed. Thanks Much..!
Welcome!
Oh nice clarity. Is it possible if you can make a vdo on how we can use an exported json file and use that in terraform to import and create the resource or integrate with some azure pipeline.
Sure! Thanks for the suggestion
Thankyou So Much For the content you provided.
Welcome👍🏻
All videos of devops mela helpfully, Sir how we can connect with you
Kindly write to me directly on devopsmela@gmail.com
Thanks for the valuable video it was too helpful to prepare for the interview and the way of ur teaching is soo cool& easy to understand. ❤️
Thanks!! For the valuable feedback..
This video was really informative 👌 it actually gave me the practical understanding of things work in terraform... Thanks for making this one.. I hope to see more videos like this in future 🙏
Sure! Thanks for the valuable feedback…
It would be great if you could do similar interview questions on Ansible!
Thank you so much sir for the questions and solutions.
Q. Where do the backup file gets created if we use backend to store state file? In that case too will it be created in local?
Hello Neeharika,
If your are using backend block for example az storage account, in such cases you need to enable versioning to create version of your state file..
Thanks!
@@DevOpsMela object versioning of azure storage. Thank you for quick response.
In scenario 2 , can we use Terraform Replace or Put Lifestyle policy on EC2 ?
Yes, Terraform Taint would be deprived soon and would be replaced by Terraform Replace command…
Wonderful videos, Just amazing for someone who cannot crack scenerio based questions in the interview. When time permits, can you please create a similar vidoe on Kubernetes as well.
Thanks! Mohammed for the valuable feedback…
I have question, just imagine if we have only the state file available and the terraform files are deleted by mistake. Assume if this is in my local and i don't have any other access to get the terraform module files. Then is there a way we can recover automatically using the state files?
Hello Msk,
In such condition you can recover config files from state file but you can surely re-write in reference to the state file…
Thanks!
Thanks brother..you are doing a great job..please make a video on git scenario based questions like troubleshooting in case of errors etc.
Sure! Thanks for suggestion and I have few questions on git too, kindly check includeed with Azure DevOps interview questionnaire…
@@DevOpsMela sure..will check..thanks for the reply❤️
Pure gold ✨️
Thanks! For the valuable feedback…
Very helpful
Please do more videos on kuberneties
Thanks! I do have kubernetes videos too kindly check “Interview Questions” playlist
Ya ok definitely
Great work brother what is your doing it's really👍👏..... More videos do the azure deveps
Sure!! Thanks for your valuable feedback..
I have one interview question.
so the question is like :- There is one tf configuration file written by an employee A to create some resource. He goes on break and meanwhile employee B create the same resource manually. When A comes and try to create the resource via terraform there is duplicate resource error. So he does terraform import. Now what can be the solution to prevent this situation from happening in future?
Hello Suruchi,
In such cases if the resource is created manually then the same needs to be updated in terraform configuration, post which by running terraform refresh the state file would be updated to match the current state…
thank you sir for your efforts and amazing questions
Welcome! Rohan
@@DevOpsMela sir these are real interview right so we have to write these scripts too?
Clear expectations!
Thanks!
nice, can you please do more videos on interview questions for kubernetes,ansible
Sure!! Thanks for the suggestion…
Thank You, Sir.🙏
Welcome 🙏
Awesome thank you for the video
Glad! Thanks for the feedback…
Very helpful - thank you!!
Welcome!! 👍🏻👍🏻
Nice Explanation 👌👌
Thanks!!
excellent content
Thanks! Harish…
please make more video on interview point of view lot of people are in search of job now a days great job bro
Sure! Moin thanks for the suggestion...
Your videos are so helpful...would like to join the Azure DevOps full course if you are giving so. Could you help me how to reach you for it.
Thanks! For the feedback
Kindly email at devopsmela@gmail.com
Can you cover Azure container registry, docker , kubernetes
Its their, kindly check Interview Question playlist
good info... make a video related to the workspace in terraform
Sure! Thanks for the suggestion…
Bro, please provide more interview questions on azure terraform..
Sure!! Will do it as soon as possible..
Thank you bro
Welcome bro
Clear understand
Wonderful video , hope you have noticed the degraded voice quality and will fix in in upcoming videos, Thanks a lot.
Thanks for the feedback..
It was really good thanks. I have some doubts on storing creds or how we should pass the creds for aws provider to get connected
As part of my practice I followed:
1.hardcoding them in provider block
2. use env varibales
3.use ./profile by storing them in a file
I know the above mentioned are not acceptable in a real time projects I would like to know if you can help me in understanding how real time project authentication takes place where if we have a set 10 to 20 employees who need to connect do we go with a common service account creds in this case?
Could you please throw some light on this ?
Thanks
Hello Bharath,
In real time there are several ways of storing critical information such as Passwords, Certificates etc
One of the way you can try would be HashiCorp Vaults to store and access your secrets
Thanks…
@@DevOpsMela thanks for the reply but can you show a demo on this would be really helpful
taint command is deprecated now , use terraform apply -replace
Right! Terraform taint is replaced by terraform apply…
can you please keep the code you have shown into github?
Hey Mahendra,
We don’t have any code or such for Terraform Interview videos…
Thanks,
Rohit K Singh
DevOps Mela