2024-02-08 03:48:59 -06:00
|
|
|
// Copyright (c) The OpenTofu Authors
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
2023-05-02 10:33:06 -05:00
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2017-10-24 17:00:11 -05:00
|
|
|
// Package regsrc provides helpers for working with source strings that identify
|
2023-12-13 10:35:41 -06:00
|
|
|
// resources within a OpenTofu registry.
|
2017-10-24 17:00:11 -05:00
|
|
|
package regsrc
|
|
|
|
|
|
|
|
var (
|
|
|
|
// PublicRegistryHost is a FriendlyHost that represents the public registry.
|
2023-10-03 02:49:38 -05:00
|
|
|
PublicRegistryHost = NewFriendlyHost("registry.opentofu.org")
|
2017-10-24 17:00:11 -05:00
|
|
|
)
|