mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-26 22:02:25 -04: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")
|
|
)
|