github.com/opentofu/opentofu@v1.7.1/internal/registry/regsrc/regsrc.go (about) 1 // Copyright (c) The OpenTofu Authors 2 // SPDX-License-Identifier: MPL-2.0 3 // Copyright (c) 2023 HashiCorp, Inc. 4 // SPDX-License-Identifier: MPL-2.0 5 6 // Package regsrc provides helpers for working with source strings that identify 7 // resources within a OpenTofu registry. 8 package regsrc 9 10 var ( 11 // PublicRegistryHost is a FriendlyHost that represents the public registry. 12 PublicRegistryHost = NewFriendlyHost("registry.opentofu.org") 13 )