Terraform
Terraform
The purpose of null_resource in Terraform is to act as a placeholder for arbitrary actions that
don't directly create, update, or destroy resources. It's commonly used for running
provisioners, executing external scripts, handling dependencies, or performing cleanup tasks
within Terraform configurations.
terraform {
backend "s3" {
bucket = "my-terraform-state"
key = "terraform.tfstate"
region = "us-west-2"
encrypt = true
dynamodb_table = "terraform-lock"
}
}