From 0246939e330b46c631a394f9d401ddc0f31bbb43 Mon Sep 17 00:00:00 2001 From: "hashicorp-copywrite[bot]" <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 16:13:44 +0000 Subject: [PATCH] [COMPLIANCE] Add Copyright and License Headers --- internal/ignorefiles/ignorerules.go | 3 +++ internal/ignorefiles/terraformignore.go | 3 +++ internal/ignorefiles/terraformignore_test.go | 3 +++ slug.go | 3 +++ slug_test.go | 3 +++ sourceaddrs/doc.go | 3 +++ sourceaddrs/package_remote.go | 3 +++ sourceaddrs/source.go | 3 +++ sourceaddrs/source_final.go | 3 +++ sourceaddrs/source_final_test.go | 3 +++ sourceaddrs/source_local.go | 3 +++ sourceaddrs/source_registry.go | 3 +++ sourceaddrs/source_registry_final.go | 3 +++ sourceaddrs/source_remote.go | 3 +++ sourceaddrs/source_remote_types.go | 3 +++ sourceaddrs/source_test.go | 3 +++ sourceaddrs/subpath.go | 3 +++ sourcebundle/builder.go | 3 +++ sourcebundle/builder_test.go | 3 +++ sourcebundle/bundle.go | 3 +++ sourcebundle/dependency_finder.go | 3 +++ sourcebundle/diagnostics.go | 3 +++ sourcebundle/doc.go | 3 +++ sourcebundle/manifest_json.go | 3 +++ sourcebundle/package_fetcher.go | 3 +++ sourcebundle/package_meta.go | 3 +++ sourcebundle/registry_client.go | 3 +++ sourcebundle/trace.go | 3 +++ terraformignore.go | 3 +++ testdata/archive-dir-absolute/_common/extra-files/bar.sh | 3 +++ testdata/archive-dir-absolute/_common/extra-files/foo.sh | 3 +++ testdata/archive-dir-absolute/_common/locals.tf | 3 +++ testdata/archive-dir-absolute/_common/output.tf | 3 +++ testdata/archive-dir-absolute/_common/versions.tf | 3 +++ testdata/archive-dir-absolute/dev/backend.tf | 3 +++ testdata/archive-dir-absolute/dev/variables.tf | 3 +++ testdata/example.tf | 3 +++ 37 files changed, 111 insertions(+) diff --git a/internal/ignorefiles/ignorerules.go b/internal/ignorefiles/ignorerules.go index 25c2677..2f20b7f 100644 --- a/internal/ignorefiles/ignorerules.go +++ b/internal/ignorefiles/ignorerules.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + // Package ignorefiles deals with the ".terraformignore" file format, which // is a convention similar to ".gitignore" that specifies path patterns that // match files Terraform should discard or ignore when interpreting a package diff --git a/internal/ignorefiles/terraformignore.go b/internal/ignorefiles/terraformignore.go index 0eda3a0..2fe30a1 100644 --- a/internal/ignorefiles/terraformignore.go +++ b/internal/ignorefiles/terraformignore.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package ignorefiles import ( diff --git a/internal/ignorefiles/terraformignore_test.go b/internal/ignorefiles/terraformignore_test.go index 1ca5ba1..c1975c9 100644 --- a/internal/ignorefiles/terraformignore_test.go +++ b/internal/ignorefiles/terraformignore_test.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package ignorefiles import ( diff --git a/slug.go b/slug.go index 53c4579..9bc32de 100644 --- a/slug.go +++ b/slug.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package slug import ( diff --git a/slug_test.go b/slug_test.go index 5a1eb9d..f3bc44a 100644 --- a/slug_test.go +++ b/slug_test.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package slug import ( diff --git a/sourceaddrs/doc.go b/sourceaddrs/doc.go index b0f3c91..8a76042 100644 --- a/sourceaddrs/doc.go +++ b/sourceaddrs/doc.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + // Package sourceaddrs deals with the various types of source code address // that Terraform can gather into a source bundle via the sibling package // "sourcebundle". diff --git a/sourceaddrs/package_remote.go b/sourceaddrs/package_remote.go index 701b770..3b45e02 100644 --- a/sourceaddrs/package_remote.go +++ b/sourceaddrs/package_remote.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourceaddrs import ( diff --git a/sourceaddrs/source.go b/sourceaddrs/source.go index 2b8586b..7d55479 100644 --- a/sourceaddrs/source.go +++ b/sourceaddrs/source.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourceaddrs import ( diff --git a/sourceaddrs/source_final.go b/sourceaddrs/source_final.go index ad85942..db9ad37 100644 --- a/sourceaddrs/source_final.go +++ b/sourceaddrs/source_final.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourceaddrs import ( diff --git a/sourceaddrs/source_final_test.go b/sourceaddrs/source_final_test.go index b2250a4..1747a6f 100644 --- a/sourceaddrs/source_final_test.go +++ b/sourceaddrs/source_final_test.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourceaddrs import ( diff --git a/sourceaddrs/source_local.go b/sourceaddrs/source_local.go index d002dba..eec7f68 100644 --- a/sourceaddrs/source_local.go +++ b/sourceaddrs/source_local.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourceaddrs import ( diff --git a/sourceaddrs/source_registry.go b/sourceaddrs/source_registry.go index 000526a..20509fc 100644 --- a/sourceaddrs/source_registry.go +++ b/sourceaddrs/source_registry.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourceaddrs import ( diff --git a/sourceaddrs/source_registry_final.go b/sourceaddrs/source_registry_final.go index 7ed9338..76a9be6 100644 --- a/sourceaddrs/source_registry_final.go +++ b/sourceaddrs/source_registry_final.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourceaddrs import ( diff --git a/sourceaddrs/source_remote.go b/sourceaddrs/source_remote.go index 8ba5858..87c7c69 100644 --- a/sourceaddrs/source_remote.go +++ b/sourceaddrs/source_remote.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourceaddrs import ( diff --git a/sourceaddrs/source_remote_types.go b/sourceaddrs/source_remote_types.go index 1c284a0..6cdc10a 100644 --- a/sourceaddrs/source_remote_types.go +++ b/sourceaddrs/source_remote_types.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourceaddrs import ( diff --git a/sourceaddrs/source_test.go b/sourceaddrs/source_test.go index 1b003d8..6093920 100644 --- a/sourceaddrs/source_test.go +++ b/sourceaddrs/source_test.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourceaddrs import ( diff --git a/sourceaddrs/subpath.go b/sourceaddrs/subpath.go index 492cbfe..52e4eb9 100644 --- a/sourceaddrs/subpath.go +++ b/sourceaddrs/subpath.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourceaddrs import ( diff --git a/sourcebundle/builder.go b/sourcebundle/builder.go index 06734ba..843f415 100644 --- a/sourcebundle/builder.go +++ b/sourcebundle/builder.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourcebundle import ( diff --git a/sourcebundle/builder_test.go b/sourcebundle/builder_test.go index e0db29e..e16e4cb 100644 --- a/sourcebundle/builder_test.go +++ b/sourcebundle/builder_test.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourcebundle import ( diff --git a/sourcebundle/bundle.go b/sourcebundle/bundle.go index 576ec7a..a239a1d 100644 --- a/sourcebundle/bundle.go +++ b/sourcebundle/bundle.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourcebundle import ( diff --git a/sourcebundle/dependency_finder.go b/sourcebundle/dependency_finder.go index 4acdbab..f01db61 100644 --- a/sourcebundle/dependency_finder.go +++ b/sourcebundle/dependency_finder.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourcebundle import ( diff --git a/sourcebundle/diagnostics.go b/sourcebundle/diagnostics.go index df2b932..3100bf1 100644 --- a/sourcebundle/diagnostics.go +++ b/sourcebundle/diagnostics.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourcebundle import ( diff --git a/sourcebundle/doc.go b/sourcebundle/doc.go index 47ad1b4..c764cfb 100644 --- a/sourcebundle/doc.go +++ b/sourcebundle/doc.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + // Package sourcebundle deals with the construction of and later consumption of // "source bundles", which are in some sense "meta-slugs" that capture a // variety of different source packages together into a single working diff --git a/sourcebundle/manifest_json.go b/sourcebundle/manifest_json.go index c2257fb..79f5386 100644 --- a/sourcebundle/manifest_json.go +++ b/sourcebundle/manifest_json.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourcebundle // This file contains some internal-only types used to help with marshalling diff --git a/sourcebundle/package_fetcher.go b/sourcebundle/package_fetcher.go index 229ac40..925b147 100644 --- a/sourcebundle/package_fetcher.go +++ b/sourcebundle/package_fetcher.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourcebundle import ( diff --git a/sourcebundle/package_meta.go b/sourcebundle/package_meta.go index a195d0d..9380f17 100644 --- a/sourcebundle/package_meta.go +++ b/sourcebundle/package_meta.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourcebundle // PackageMeta is a collection of metadata about how the content of a diff --git a/sourcebundle/registry_client.go b/sourcebundle/registry_client.go index e811334..81299b4 100644 --- a/sourcebundle/registry_client.go +++ b/sourcebundle/registry_client.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourcebundle import ( diff --git a/sourcebundle/trace.go b/sourcebundle/trace.go index 748e301..a198292 100644 --- a/sourcebundle/trace.go +++ b/sourcebundle/trace.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package sourcebundle import ( diff --git a/terraformignore.go b/terraformignore.go index 0863167..6866136 100644 --- a/terraformignore.go +++ b/terraformignore.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package slug import ( diff --git a/testdata/archive-dir-absolute/_common/extra-files/bar.sh b/testdata/archive-dir-absolute/_common/extra-files/bar.sh index 5b0e87e..b829da7 100644 --- a/testdata/archive-dir-absolute/_common/extra-files/bar.sh +++ b/testdata/archive-dir-absolute/_common/extra-files/bar.sh @@ -1,2 +1,5 @@ #!/usr/bin/env bash +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + echo "bar" diff --git a/testdata/archive-dir-absolute/_common/extra-files/foo.sh b/testdata/archive-dir-absolute/_common/extra-files/foo.sh index af85c95..11e2340 100644 --- a/testdata/archive-dir-absolute/_common/extra-files/foo.sh +++ b/testdata/archive-dir-absolute/_common/extra-files/foo.sh @@ -1,2 +1,5 @@ #!/usr/bin/env bash +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + echo "foo" diff --git a/testdata/archive-dir-absolute/_common/locals.tf b/testdata/archive-dir-absolute/_common/locals.tf index 7324c9d..9ff6088 100644 --- a/testdata/archive-dir-absolute/_common/locals.tf +++ b/testdata/archive-dir-absolute/_common/locals.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + locals { app = "service-01" } diff --git a/testdata/archive-dir-absolute/_common/output.tf b/testdata/archive-dir-absolute/_common/output.tf index 94e8f35..a52a16e 100644 --- a/testdata/archive-dir-absolute/_common/output.tf +++ b/testdata/archive-dir-absolute/_common/output.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + locals { files = fileset("${path.module}/extra-files", "*.sh") } diff --git a/testdata/archive-dir-absolute/_common/versions.tf b/testdata/archive-dir-absolute/_common/versions.tf index c509258..6e5c307 100644 --- a/testdata/archive-dir-absolute/_common/versions.tf +++ b/testdata/archive-dir-absolute/_common/versions.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + terraform { required_version = "~> 1.2" } diff --git a/testdata/archive-dir-absolute/dev/backend.tf b/testdata/archive-dir-absolute/dev/backend.tf index 3e1c863..40f30b3 100644 --- a/testdata/archive-dir-absolute/dev/backend.tf +++ b/testdata/archive-dir-absolute/dev/backend.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + terraform { remote "backend" { hostname = "foobar.terraform.io" diff --git a/testdata/archive-dir-absolute/dev/variables.tf b/testdata/archive-dir-absolute/dev/variables.tf index ec9ce9d..333d58c 100644 --- a/testdata/archive-dir-absolute/dev/variables.tf +++ b/testdata/archive-dir-absolute/dev/variables.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + locals { env = "dev" region = "us-east-2" diff --git a/testdata/example.tf b/testdata/example.tf index 3911a2a..3cd294a 100644 --- a/testdata/example.tf +++ b/testdata/example.tf @@ -1 +1,4 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + resource "null_resource" "foo" {}