2017-10-25 00:00:11 +02:00
|
|
|
// 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.
|
2018-08-02 23:35:08 +02:00
|
|
|
PublicRegistryHost = NewFriendlyHost("registry.terraform.io")
|
2017-10-25 00:00:11 +02:00
|
|
|
)
|