From 0a2a4c3b837c8633868bc2f4fa267d85fa7d18da Mon Sep 17 00:00:00 2001 From: Austin Valle Date: Wed, 17 Jan 2024 15:12:36 -0500 Subject: [PATCH] add license headers --- internal/provider/testdata/TestDirectoryExists_basic/main.tf | 3 +++ internal/provider/testdata/TestDirectoryExists_invalid/main.tf | 3 +++ internal/provider/testdata/TestLocalFileDataSource/main.tf | 3 +++ .../provider/testdata/TestLocalFileSensitiveDataSource/main.tf | 3 +++ 4 files changed, 12 insertions(+) diff --git a/internal/provider/testdata/TestDirectoryExists_basic/main.tf b/internal/provider/testdata/TestDirectoryExists_basic/main.tf index 853652fd..b6da5bfa 100644 --- a/internal/provider/testdata/TestDirectoryExists_basic/main.tf +++ b/internal/provider/testdata/TestDirectoryExists_basic/main.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + terraform { required_providers { local = { diff --git a/internal/provider/testdata/TestDirectoryExists_invalid/main.tf b/internal/provider/testdata/TestDirectoryExists_invalid/main.tf index 2b122830..44c05ce7 100644 --- a/internal/provider/testdata/TestDirectoryExists_invalid/main.tf +++ b/internal/provider/testdata/TestDirectoryExists_invalid/main.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + terraform { required_providers { local = { diff --git a/internal/provider/testdata/TestLocalFileDataSource/main.tf b/internal/provider/testdata/TestLocalFileDataSource/main.tf index a91e5cb4..4904e24b 100644 --- a/internal/provider/testdata/TestLocalFileDataSource/main.tf +++ b/internal/provider/testdata/TestLocalFileDataSource/main.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + data "local_file" "file" { # Known issue where relative path is based on where the test working directory is located: # https://github.com/hashicorp/terraform-plugin-testing/issues/277 diff --git a/internal/provider/testdata/TestLocalFileSensitiveDataSource/main.tf b/internal/provider/testdata/TestLocalFileSensitiveDataSource/main.tf index d8354287..668999cf 100644 --- a/internal/provider/testdata/TestLocalFileSensitiveDataSource/main.tf +++ b/internal/provider/testdata/TestLocalFileSensitiveDataSource/main.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + data "local_sensitive_file" "file" { # Known issue where relative path is based on where the test working directory is located: # https://github.com/hashicorp/terraform-plugin-testing/issues/277