From 68f1c08a72002d87196a68d154748c56378a1c45 Mon Sep 17 00:00:00 2001 From: "hashicorp-copywrite[bot]" <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Date: Wed, 1 Feb 2023 17:30:38 +0000 Subject: [PATCH] [COMPLIANCE] Add Copyright and License Headers --- main.tf | 3 +++ outputs.tf | 3 +++ terraform.tf | 3 +++ variables.tf | 3 +++ 4 files changed, 12 insertions(+) diff --git a/main.tf b/main.tf index 482b433..40344ef 100644 --- a/main.tf +++ b/main.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + provider "aws" { region = var.region } diff --git a/outputs.tf b/outputs.tf index 30f1ad9..c09edba 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + output "website_endpoint" { description = "HTTP endpoint for example website." value = module.s3-webapp.endpoint diff --git a/terraform.tf b/terraform.tf index 68871a6..82982bb 100644 --- a/terraform.tf +++ b/terraform.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + terraform { required_providers { aws = { diff --git a/variables.tf b/variables.tf index b0531cf..ec11930 100644 --- a/variables.tf +++ b/variables.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + variable "region" { description = "This is the cloud hosting region where your webapp will be deployed." type = string