great playlist. tell me the defaukt provider take precedence because it is on top of the file (declared first) or because it does not have alias ? Thanks
Hi Will, Great tutorials. Thanks! @12.55 why did it fail to output two public ip addresses of prod and dev instances? Because it is a dictionary instead of ordinal numbers? BTW If we want it to work, how should we change the output?
Hi Brock, How do we add/update resources when we run terraform apply( first spin up with 1 instances, 2nd time spin up with 2 instances(don't delete firstly spin up instances). total instances count should be 3. Could you please help me on this. For example: First case: terraform apply -var="vmcount=1" Created 1 instance. Second case: terraform apply -var="vmcount=2" Created 2 instances but destroying old one(which is created in First case) I don't want loss firstly created instance. We just want to Add 2 more instances. then finally we've 3 resources. Could you please help me on this.