mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-24 20:01:06 -05:00
12 lines
358 B
Go
12 lines
358 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
// Package regsrc provides helpers for working with source strings that identify
|
|
// resources within a Terraform registry.
|
|
package regsrc
|
|
|
|
var (
|
|
// PublicRegistryHost is a FriendlyHost that represents the public registry.
|
|
PublicRegistryHost = NewFriendlyHost("registry.terraform.io")
|
|
)
|