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/testing/equivalence-tests/tests/moved_with_update/main.tf

20 lines
326 B

terraform {
required_providers {
tfcoremock = {
source = "hashicorp/tfcoremock"
version = "0.1.1"
}
}
}
provider "tfcoremock" {}
resource "tfcoremock_simple_resource" "moved" {
string = "Hello, change!"
}
moved {
from = tfcoremock_simple_resource.base
to = tfcoremock_simple_resource.moved
}