From e7f81b65b7bf04f853f3af4e0aa7f7573e53daf8 Mon Sep 17 00:00:00 2001
From: hc-espd-packager <team-rel-eng@hashicorp.com>
Date: Wed, 24 Jul 2024 19:09:34 +0000
Subject: [PATCH 1/2] Bump terraform to 1.9.3

---
 Formula/terraform.rb | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/Formula/terraform.rb b/Formula/terraform.rb
index d8deaf0..f2ec190 100644
--- a/Formula/terraform.rb
+++ b/Formula/terraform.rb
@@ -4,31 +4,31 @@
 class Terraform < Formula
   desc "Terraform"
   homepage "https://www.terraform.io/"
-  version "1.9.2"
+  version "1.9.3"
 
   if OS.mac? && Hardware::CPU.intel?
-    url "https://releases.hashicorp.com/terraform/1.9.2/terraform_1.9.2_darwin_amd64.zip"
-    sha256 "315e85f2c0de7d2b8862f9e7f0f78a093501be474b78ed0017aeef9cd902a8eb"
+    url "https://releases.hashicorp.com/terraform/1.9.3/terraform_1.9.3_darwin_amd64.zip"
+    sha256 "858f851ccb786faa7e4f098707d66d77a6b5e6028b75e82cdf6bda68b93922a9"
   end
 
   if OS.mac? && Hardware::CPU.arm?
-    url "https://releases.hashicorp.com/terraform/1.9.2/terraform_1.9.2_darwin_arm64.zip"
-    sha256 "da2093ea34c0eed12ce6c2238b35e2caf71d3e26cdad3c55607c97be7ebe98ed"
+    url "https://releases.hashicorp.com/terraform/1.9.3/terraform_1.9.3_darwin_arm64.zip"
+    sha256 "168cfeb339dbbfea6be651573ec168e6ca08bab79a4fc0474681eee1e9a95de9"
   end
 
   if OS.linux? && Hardware::CPU.intel?
-    url "https://releases.hashicorp.com/terraform/1.9.2/terraform_1.9.2_linux_amd64.zip"
-    sha256 "d5f5aaba0f8ebff88ef0b23935872e154e2abf3172596261be834605ba3ba714"
+    url "https://releases.hashicorp.com/terraform/1.9.3/terraform_1.9.3_linux_amd64.zip"
+    sha256 "e52520cf6d677155e69a8fcfe64054891f4d991802b0d36d4c8b670d60a7e899"
   end
 
   if OS.linux? && Hardware::CPU.arm? && !Hardware::CPU.is_64_bit?
-    url "https://releases.hashicorp.com/terraform/1.9.2/terraform_1.9.2_linux_arm.zip"
-    sha256 "416990887ce03bdc518fd689f2640c0f34da2a12189595ca38db5ede371f4a1a"
+    url "https://releases.hashicorp.com/terraform/1.9.3/terraform_1.9.3_linux_arm.zip"
+    sha256 "0d3cbbfc97bc2cb3bf08cdb9dbabc17d8e2dabb0aedf60d752c51f14d3501ce2"
   end
 
   if OS.linux? && Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
-    url "https://releases.hashicorp.com/terraform/1.9.2/terraform_1.9.2_linux_arm64.zip"
-    sha256 "901821024261b851c46e2060d8849750a93dfe64bf8bcb85839f13325945f889"
+    url "https://releases.hashicorp.com/terraform/1.9.3/terraform_1.9.3_linux_arm64.zip"
+    sha256 "193ce269aafd5c44f359cd73a75c5cc7aaab924eb5c3601784c1873575828ec7"
   end
 
   conflicts_with "terraform"

From 93f94ff5fa0927fa7e7236c46c8400fc10b73eb7 Mon Sep 17 00:00:00 2001
From: "hashicorp-copywrite[bot]"
 <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
Date: Mon, 29 Jul 2024 16:23:12 +0000
Subject: [PATCH 2/2] [COMPLIANCE] Add Copyright and License Headers

---
 .github/labeler.yml                                            | 3 +++
 Formula/enos.rb                                                | 3 +++
 META.d/_summary.yaml                                           | 3 +++
 META.d/data.yml                                                | 3 +++
 META.d/tags.yaml                                               | 3 +++
 util/formula_templater/config.go                               | 3 +++
 util/formula_templater/config.hcl                              | 3 +++
 util/formula_templater/formula.go                              | 3 +++
 util/formula_templater/formula_test.go                         | 3 +++
 util/formula_templater/main.go                                 | 3 +++
 util/formula_templater/shasums.go                              | 3 +++
 util/lambda_trigger/lambda_trigger.go                          | 3 +++
 util/lambda_trigger/lambda_trigger_test.go                     | 3 +++
 util/lambda_trigger/releases.go                                | 3 +++
 .../testdata/github.com_cask_boundary-desktop.rb               | 3 +++
 .../testdata/github.com_formula_nomad-enterprise.rb            | 3 +++
 util/lambda_trigger/testdata/github.com_formula_nomad.rb       | 3 +++
 17 files changed, 51 insertions(+)

diff --git a/.github/labeler.yml b/.github/labeler.yml
index f0418d0..84b7d87 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -1,3 +1,6 @@
+# Copyright (c) HashiCorp, Inc.
+# SPDX-License-Identifier: MPL-2.0
+
 automerge:
   - Formula/consul.rb
   - Formula/consul-enterprise.rb
diff --git a/Formula/enos.rb b/Formula/enos.rb
index ab96344..f457ca3 100644
--- a/Formula/enos.rb
+++ b/Formula/enos.rb
@@ -1,3 +1,6 @@
+# Copyright (c) HashiCorp, Inc.
+# SPDX-License-Identifier: MPL-2.0
+
 class Enos < Formula
   desc "A tool for powering Software Quality as Code by writing Terraform-based quality requirement scenarios using a composable, modular, and declarative language."
   homepage "https://github.com/hashicorp/enos"
diff --git a/META.d/_summary.yaml b/META.d/_summary.yaml
index 7d75bf6..e95ea31 100644
--- a/META.d/_summary.yaml
+++ b/META.d/_summary.yaml
@@ -1,3 +1,6 @@
+# Copyright (c) HashiCorp, Inc.
+# SPDX-License-Identifier: MPL-2.0
+
 ---
 schema: 1.1
 partition: release-engineering
diff --git a/META.d/data.yml b/META.d/data.yml
index 6ee8ece..0cc3904 100644
--- a/META.d/data.yml
+++ b/META.d/data.yml
@@ -1,3 +1,6 @@
+# Copyright (c) HashiCorp, Inc.
+# SPDX-License-Identifier: MPL-2.0
+
 _summary:
   gdpr:
     exempt: true
diff --git a/META.d/tags.yaml b/META.d/tags.yaml
index 47b5f41..fb7a513 100644
--- a/META.d/tags.yaml
+++ b/META.d/tags.yaml
@@ -1,3 +1,6 @@
+# Copyright (c) HashiCorp, Inc.
+# SPDX-License-Identifier: MPL-2.0
+
 ---
 # exemption required by automation
 tags:
diff --git a/util/formula_templater/config.go b/util/formula_templater/config.go
index 38773be..868cd48 100644
--- a/util/formula_templater/config.go
+++ b/util/formula_templater/config.go
@@ -1,3 +1,6 @@
+// Copyright (c) HashiCorp, Inc.
+// SPDX-License-Identifier: MPL-2.0
+
 package main
 
 import (
diff --git a/util/formula_templater/config.hcl b/util/formula_templater/config.hcl
index ff05a0a..1c4d7b5 100644
--- a/util/formula_templater/config.hcl
+++ b/util/formula_templater/config.hcl
@@ -1,3 +1,6 @@
+# Copyright (c) HashiCorp, Inc.
+# SPDX-License-Identifier: MPL-2.0
+
 formula {
     product = "boundary"
     name = "Boundary"
diff --git a/util/formula_templater/formula.go b/util/formula_templater/formula.go
index dd5fac6..675134e 100644
--- a/util/formula_templater/formula.go
+++ b/util/formula_templater/formula.go
@@ -1,3 +1,6 @@
+// Copyright (c) HashiCorp, Inc.
+// SPDX-License-Identifier: MPL-2.0
+
 package main
 
 import (
diff --git a/util/formula_templater/formula_test.go b/util/formula_templater/formula_test.go
index a5b482c..d1bf5a0 100644
--- a/util/formula_templater/formula_test.go
+++ b/util/formula_templater/formula_test.go
@@ -1,3 +1,6 @@
+// Copyright (c) HashiCorp, Inc.
+// SPDX-License-Identifier: MPL-2.0
+
 package main
 
 import (
diff --git a/util/formula_templater/main.go b/util/formula_templater/main.go
index 2248197..7fe26e1 100644
--- a/util/formula_templater/main.go
+++ b/util/formula_templater/main.go
@@ -1,3 +1,6 @@
+// Copyright (c) HashiCorp, Inc.
+// SPDX-License-Identifier: MPL-2.0
+
 package main
 
 import (
diff --git a/util/formula_templater/shasums.go b/util/formula_templater/shasums.go
index b925410..703794b 100644
--- a/util/formula_templater/shasums.go
+++ b/util/formula_templater/shasums.go
@@ -1,3 +1,6 @@
+// Copyright (c) HashiCorp, Inc.
+// SPDX-License-Identifier: MPL-2.0
+
 package main
 
 import (
diff --git a/util/lambda_trigger/lambda_trigger.go b/util/lambda_trigger/lambda_trigger.go
index dad7e73..982df89 100644
--- a/util/lambda_trigger/lambda_trigger.go
+++ b/util/lambda_trigger/lambda_trigger.go
@@ -1,3 +1,6 @@
+// Copyright (c) HashiCorp, Inc.
+// SPDX-License-Identifier: MPL-2.0
+
 package main
 
 import (
diff --git a/util/lambda_trigger/lambda_trigger_test.go b/util/lambda_trigger/lambda_trigger_test.go
index 67fcd1d..679754b 100644
--- a/util/lambda_trigger/lambda_trigger_test.go
+++ b/util/lambda_trigger/lambda_trigger_test.go
@@ -1,3 +1,6 @@
+// Copyright (c) HashiCorp, Inc.
+// SPDX-License-Identifier: MPL-2.0
+
 package main
 
 import (
diff --git a/util/lambda_trigger/releases.go b/util/lambda_trigger/releases.go
index e815729..69684ff 100644
--- a/util/lambda_trigger/releases.go
+++ b/util/lambda_trigger/releases.go
@@ -1,3 +1,6 @@
+// Copyright (c) HashiCorp, Inc.
+// SPDX-License-Identifier: MPL-2.0
+
 package main
 
 import (
diff --git a/util/lambda_trigger/testdata/github.com_cask_boundary-desktop.rb b/util/lambda_trigger/testdata/github.com_cask_boundary-desktop.rb
index 70249c5..a073eac 100644
--- a/util/lambda_trigger/testdata/github.com_cask_boundary-desktop.rb
+++ b/util/lambda_trigger/testdata/github.com_cask_boundary-desktop.rb
@@ -1,3 +1,6 @@
+# Copyright (c) HashiCorp, Inc.
+# SPDX-License-Identifier: MPL-2.0
+
 cask "hashicorp-boundary-desktop" do
   version "1.5.0"
   sha256 "861a1c0c11b70d8c1897e9cc78ce323b1e0df88217461255b92f09088c9bd15f"
diff --git a/util/lambda_trigger/testdata/github.com_formula_nomad-enterprise.rb b/util/lambda_trigger/testdata/github.com_formula_nomad-enterprise.rb
index 7492d7b..d848adc 100644
--- a/util/lambda_trigger/testdata/github.com_formula_nomad-enterprise.rb
+++ b/util/lambda_trigger/testdata/github.com_formula_nomad-enterprise.rb
@@ -1,3 +1,6 @@
+# Copyright (c) HashiCorp, Inc.
+# SPDX-License-Identifier: MPL-2.0
+
 class NomadEnterprise < Formula
   desc "Nomad Enterprise"
   homepage "https://www.nomadproject.io/"
diff --git a/util/lambda_trigger/testdata/github.com_formula_nomad.rb b/util/lambda_trigger/testdata/github.com_formula_nomad.rb
index d922cc5..8992101 100644
--- a/util/lambda_trigger/testdata/github.com_formula_nomad.rb
+++ b/util/lambda_trigger/testdata/github.com_formula_nomad.rb
@@ -1,3 +1,6 @@
+# Copyright (c) HashiCorp, Inc.
+# SPDX-License-Identifier: MPL-2.0
+
 class Nomad < Formula
   desc "Nomad"
   homepage "https://www.nomadproject.io/"