0
0
llucycodes42
This code is telling Terraform to load the Terraform state data for a backend that is located at the path module directory.
Shortcut: tf_local_backend
data "terraform_remote_state" "${myBackend}" {
backend = "local"
config {
path = "\${path.module}/../../terraform.tfstate"
}
}