Thankyou so much!!Now have much better clarity on why we need null resource.
@hemanthyoga23057 ай бұрын
Thanks for explaining null resource concept very clearly with the use case. Its very simple and clear
@RahulWagh7 ай бұрын
You are welcome!
@dopeout7247Ай бұрын
Subscribed for this explanation.
@priyankapani97506 ай бұрын
You deserve more subscribers. Your way of teaching is very nice
@RahulWagh6 ай бұрын
So nice of you
@amaravathiyagati2160 Жыл бұрын
Nice. I have been trying to understand "null_resource" , since its a name of conflict , why a null and be a resource, but your video cleared all our questions. thanks, its really a wonderful video and the concept
@RahulWagh Жыл бұрын
Glad to know
@The_Personal_Picks_SnM Жыл бұрын
better and unique way of explaining things.. Thanks
@RahulWagh Жыл бұрын
You are welcome
@cruepprich Жыл бұрын
Very good explanation. I also appreciate the chapters allowing to skip around.
@RahulWagh Жыл бұрын
Glad it was helpful!
@swatikatyal1344 Жыл бұрын
Thanks for every session. i learned a lot from your sessions and you explained every topic in a very simple way I just loved these explanations.
@RahulWagh Жыл бұрын
Glad to hear that
@danishnoman2042 Жыл бұрын
Just to make a correction: in the null resource, it prints the ID of the null resource not of EC2 instance. Rest is good. Thanks
@nagababunalluri5059 Жыл бұрын
Big fan of your explanation sir..
@matheusmaais Жыл бұрын
awesome! you have very good way to explain concepts, keep going further!
@RahulWagh Жыл бұрын
You are welcome and stay tuned for more
@priyankapani97506 ай бұрын
Very useful content. Thank you
@RahulWagh6 ай бұрын
You are welcome
@guptajiikaladka2 жыл бұрын
You Simply cleared one of the complex topic, thank you Sir!
@RahulWagh2 жыл бұрын
Glad to hear that!
@janardhanreddyboyalla294128 күн бұрын
I noticed one thing at the end,when he changed the value of the trigger, the ec2 instance is destroyed.Can i know the reason?
@sravanij-y4f10 ай бұрын
thank you for sharing knowledge
@RahulWagh10 ай бұрын
My pleasure
@happylearningtricks Жыл бұрын
thanks Rahul very useful
@pravinkumar849111 ай бұрын
Thank you @Rahul Wagh
@RahulWagh11 ай бұрын
You are welcome
@pedrojaviermunozgarcia3721 Жыл бұрын
really helpful lesson
@RahulWagh Жыл бұрын
Glad to hear that!
@vikasrana4072 жыл бұрын
Great session....thank you @rahul
@RahulWagh2 жыл бұрын
You welcome
@rupakmahto20955 ай бұрын
Thank you
@shashicenturylink8147 Жыл бұрын
do you have any online training classes or in udemy
@amaravathiyagati2160 Жыл бұрын
Do you have a video on null provider also ? 😃
@kishorek26282 жыл бұрын
Hi Rahul are u providing any training for terraform please let me know.
@lnkrishnan2 жыл бұрын
Thanks for your videos. Very helpful. BTW, Can you do some advanced topics on infrastructure provisioning with terraform using modules? Say using one module for VPC creation, another for EC2 instance provisioning, and a third that provisions application LB. Simple requirement would be to setup VPC, and in it, provision the internet facing ALB in the public subnet that loadbalances over 3 EC2 instances in private subnets spread over 3 AZs. Is that something you can showcase? Would be much appreciated.
@nagamohan1602 жыл бұрын
Hi Nice explanation... I have the below code, can you explain to me what it will do data "null_data_source" "tags_ec2" { count = length(keys(local.tags_ec2_raw)) inputs = { Key = element(keys(local.tags_ec2_raw), count.index) Value = element(values(local.tags_ec2_raw), count.index) } }