11 lines
134 B
Terraform
11 lines
134 B
Terraform
|
provider "terraform" {
|
||
|
|
||
|
}
|
||
|
|
||
|
data "terraform_remote_state" "test" {
|
||
|
backend = "local"
|
||
|
config = {
|
||
|
path = "nothing.tfstate"
|
||
|
}
|
||
|
}
|