mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-26 04:01:50 -04:00
19 lines
553 B
Go
19 lines
553 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package getproviders
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/hashicorp/terraform/internal/addrs"
|
|
)
|
|
|
|
// A Source can query a particular source for information about providers
|
|
// that are available to install.
|
|
type Source interface {
|
|
AvailableVersions(ctx context.Context, provider addrs.Provider) (VersionList, Warnings, error)
|
|
PackageMeta(ctx context.Context, provider addrs.Provider, version Version, target Platform) (PackageMeta, error)
|
|
ForDisplay(provider addrs.Provider) string
|
|
}
|