From 702db362e004954a46ccb8d05669fee56b2c8809 Mon Sep 17 00:00:00 2001 From: "hashicorp-copywrite[bot]" <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Date: Mon, 6 Feb 2023 16:50:51 +0000 Subject: [PATCH] [COMPLIANCE] Add Copyright and License Headers --- terraform/iam.tf | 3 +++ terraform/states.tf | 3 +++ terraform/versions.tf | 3 +++ 3 files changed, 9 insertions(+) diff --git a/terraform/iam.tf b/terraform/iam.tf index 1652120..f1937e8 100644 --- a/terraform/iam.tf +++ b/terraform/iam.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + resource "aws_iam_role" "aft_states" { name = "aft-account-provisioning-customizations-role" assume_role_policy = templatefile("${path.module}/iam/trust-policies/states.tpl", { none = "none" }) diff --git a/terraform/states.tf b/terraform/states.tf index 127c2da..9734a54 100644 --- a/terraform/states.tf +++ b/terraform/states.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + resource "aws_sfn_state_machine" "aft_account_provisioning_customizations" { name = "aft-account-provisioning-customizations" role_arn = aws_iam_role.aft_states.arn diff --git a/terraform/versions.tf b/terraform/versions.tf index 18d8cbb..7356833 100755 --- a/terraform/versions.tf +++ b/terraform/versions.tf @@ -1,3 +1,6 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: MPL-2.0 + terraform { required_version = ">= 0.15.0"