mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-03 05:50:43 -05:00
14 lines
446 B
Go
14 lines
446 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package hooks
|
|
|
|
import "github.com/hashicorp/terraform/internal/stacks/stackaddrs"
|
|
|
|
// ComponentInstances is the argument type for the ComponentExpanded hook
|
|
// callback, which signals the result of expanding a component into zero or
|
|
// more instances.
|
|
type ComponentInstances struct {
|
|
ComponentAddr stackaddrs.AbsComponent
|
|
InstanceAddrs []stackaddrs.AbsComponentInstance
|
|
}
|