mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-01 11:47:07 -06:00
ebcf7455eb
* Rename module name from "github.com/hashicorp/terraform" to "github.com/placeholderplaceholderplaceholder/opentf". Signed-off-by: Jakub Martin <kubam@spacelift.io> * Gofmt. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Regenerate protobuf. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Fix comments. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Undo issue and pull request link changes. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Undo comment changes. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Fix comment. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Undo some link changes. Signed-off-by: Jakub Martin <kubam@spacelift.io> * make generate && make protobuf Signed-off-by: Jakub Martin <kubam@spacelift.io> --------- Signed-off-by: Jakub Martin <kubam@spacelift.io>
20 lines
634 B
Go
20 lines
634 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package configs
|
|
|
|
import "github.com/placeholderplaceholderplaceholder/opentf/internal/addrs"
|
|
|
|
// Container provides an interface for scoped resources.
|
|
//
|
|
// Any resources contained within a Container should not be accessible from
|
|
// outside the container.
|
|
type Container interface {
|
|
// Accessible should return true if the resource specified by addr can
|
|
// reference other items within this Container.
|
|
//
|
|
// Typically, that means that addr will either be the container itself or
|
|
// something within the container.
|
|
Accessible(addr addrs.Referenceable) bool
|
|
}
|