Null Resources
Explore the concept of Terraform null_resource, a special resource used to attach provisioners without creating infrastructure. Understand its typical use cases and why it is generally avoided in favor of more efficient methods, especially in AWS environments.
We'll cover the following...
We'll cover the following...
null_resource
A null_resource is a special no-op resource that creates nothing. It is a dummy resource that allows
you to attach a provisioner to it. This resource ...