mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-12 00:00:32 -04:00
Signed-off-by: AbstractionFactory <179820029+abstractionfactory@users.noreply.github.com> Signed-off-by: ollevche <ollevche@gmail.com> Co-authored-by: Oleksandr Levchenkov <ollevche@gmail.com>
12 lines
339 B
Go
12 lines
339 B
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package external
|
|
|
|
// MetadataV1 describes the metadata structure of the external provider.
|
|
type MetadataV1 struct {
|
|
ExternalData map[string]any `hcl:"external_data" json:"external_data"`
|
|
}
|