github.com/opentofu/opentofu@v1.7.1/internal/tofu/instance_expanders.go (about) 1 // Copyright (c) The OpenTofu Authors 2 // SPDX-License-Identifier: MPL-2.0 3 // Copyright (c) 2023 HashiCorp, Inc. 4 // SPDX-License-Identifier: MPL-2.0 5 6 package tofu 7 8 // graphNodeExpandsInstances is implemented by nodes that causes instances to 9 // be registered in the instances.Expander. 10 type graphNodeExpandsInstances interface { 11 expandsInstances() 12 }