mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-21 18:10:30 -04:00
14 lines
733 B
Go
14 lines
733 B
Go
// Copyright IBM Corp. 2014, 2026
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
// Package getproviders is the lowest-level provider automatic installation
|
|
// functionality. It can answer questions about what providers and provider
|
|
// versions are available in a registry, and it can retrieve the URL for
|
|
// the distribution archive for a specific version of a specific provider
|
|
// targeting a particular platform.
|
|
//
|
|
// This package is not responsible for choosing the best version to install
|
|
// from a set of available versions, or for any signature verification of the
|
|
// archives it fetches. Callers will use this package in conjunction with other
|
|
// logic elsewhere in order to construct a full provider installer.
|
|
package getproviders
|