Skip to content

Commit 38079e7

Browse files
author
AWS
committed
Release: 1.3.1.build_72173
1 parent 7b4afaf commit 38079e7

File tree

164 files changed

+729
-114
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

164 files changed

+729
-114
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
#
14
### Linux ###
25
*~
36

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.0
1+
1.3.1.build_72173

data.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
#
14
data "local_file" "version" {
25
filename = "${path.module}/VERSION"
36
}

examples/bitbucket+tf_enterprise/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
#
14
module "aft" {
25
source = "github.com/aws-ia/terraform-aws-control_tower_account_factory"
36
# Required Vars

examples/codecommit+tf_oss/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
#
14
module "aft" {
25
source = "github.com/aws-ia/terraform-aws-control_tower_account_factory"
36
# Required Vars

examples/github+tf_oss/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
#
14
module "aft" {
25
source = "github.com/aws-ia/terraform-aws-control_tower_account_factory"
36
# Required Vars

examples/githubenterprise+tf_cloud/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
#
14
module "aft" {
25
source = "github.com/aws-ia/terraform-aws-control_tower_account_factory"
36
# Required Vars

locals.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
#
14
locals {
25
aft_version = chomp(trimspace(data.local_file.version.content))
36
aft_account_provisioning_customizations_sfn_name = "aft-account-provisioning-customizations"

main.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
#
14
module "packaging" {
25
source = "./modules/aft-archives"
36
}
@@ -167,6 +170,8 @@ module "aft_lambda_layer" {
167170
aft_vpc_private_subnets = module.aft_account_request_framework.aft_vpc_private_subnets
168171
aft_vpc_default_sg = module.aft_account_request_framework.aft_vpc_default_sg
169172
s3_bucket_name = module.aft_customizations.aft_codepipeline_customizations_bucket_name
173+
builder_archive_path = module.packaging.builder_archive_path
174+
builder_archive_hash = module.packaging.builder_archive_hash
170175
}
171176

172177
module "aft_ssm_parameters" {

modules/aft-account-provisioning-framework/data.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
#
14
data "aws_region" "aft_management" {}
25
data "aws_caller_identity" "aft_management" {}
36
data "aws_iam_policy" "AWSLambdaBasicExecutionRole" {

0 commit comments

Comments
 (0)