You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/command/testdata/state-store-to-backend/main.tf

15 lines
272 B

terraform {
required_providers {
test = {
source = "hashicorp/test"
}
}
# Config has been updated to use backend
# but a state_store block is still represented
# in the backend state file
backend "local" {
path = "local-state.tfstate"
}
}