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-changed/provider-used/main.tf

17 lines
288 B

terraform {
required_providers {
test2 = {
source = "hashicorp/test2"
}
}
# changed to using `test2` provider, versus `test` used in the backend state file
state_store "test2_store" {
provider "test2" {
region = "foobar"
}
value = "foobar"
}
}