Move addrs/ to internal/addrs/

This is part of a general effort to move all of Terraform's non-library
package surface under internal in order to reinforce that these are for
internal use within Terraform only.

If you were previously importing packages under this prefix into an
external codebase, you could pin to an earlier release tag as an interim
solution until you've make a plan to achieve the same functionality some
other way.
This commit is contained in:
Martin Atkins
2021-05-17 12:00:50 -07:00
parent 26e5320a78
commit b9a93a0fe7
323 changed files with 292 additions and 292 deletions

View File

@@ -8,7 +8,7 @@ import (
"github.com/google/go-cmp/cmp"
"github.com/zclconf/go-cty/cty"
"github.com/hashicorp/terraform/addrs"
"github.com/hashicorp/terraform/internal/addrs"
)
func TestExpander(t *testing.T) {