Skip to content

Commit

Permalink
Release: 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS committed Nov 29, 2021
1 parent 32c9bb5 commit fe981d6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.0.0
1.0.1
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ phases:
TF_WORKSPACE_NAME="ct-aft-account-provisioning-customizations"
TF_CONFIG_PATH="./temp_configuration_file.tar.gz"
cd $DEFAULT_PATH/terraform
for f in *.jinja; do jinja2 $f -D timestamp="$TIMESTAMP" -D provider_region=$CT_MGMT_REGION -D tf_distribution_type=$TF_DISTRIBUTION -D terraform_org_name=$TF_ORG -D terraform_workspace_name=$TF_WORKSPACE_NAME -D aft_admin_role_arn=$AFT_EXEC_ROLE_ARN >> ./$(basename $f .jinja).tf; done
for f in *.jinja; do jinja2 $f -D timestamp="$TIMESTAMP" -D provider_region=$CT_MGMT_REGION -D tf_distribution_type=$TF_DISTRIBUTION -D terraform_org_name=$TF_ORG_NAME -D terraform_workspace_name=$TF_WORKSPACE_NAME -D aft_admin_role_arn=$AFT_EXEC_ROLE_ARN >> ./$(basename $f .jinja).tf; done
for f in *.tf; do echo "\n \n"; echo $f; cat $f; done
cd $DEFAULT_PATH
tar -czf temp_configuration_file.tar.gz -C terraform --exclude .git --exclude venv .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ phases:
TF_WORKSPACE_NAME="ct-aft-account-request"
TF_CONFIG_PATH="./temp_configuration_file.tar.gz"
cd $DEFAULT_PATH/terraform
for f in *.jinja; do jinja2 $f -D timestamp="$TIMESTAMP" -D provider_region=$CT_MGMT_REGION -D tf_distribution_type=$TF_DISTRIBUTION -D terraform_org_name=$TF_ORG -D terraform_workspace_name=$TF_WORKSPACE_NAME -D aft_admin_role_arn=$AFT_EXEC_ROLE_ARN >> ./$(basename $f .jinja).tf; done
for f in *.jinja; do jinja2 $f -D timestamp="$TIMESTAMP" -D provider_region=$CT_MGMT_REGION -D tf_distribution_type=$TF_DISTRIBUTION -D terraform_org_name=$TF_ORG_NAME -D terraform_workspace_name=$TF_WORKSPACE_NAME -D aft_admin_role_arn=$AFT_EXEC_ROLE_ARN >> ./$(basename $f .jinja).tf; done
for f in *.tf; do echo "\n \n"; echo $f; cat $f; done
cd $DEFAULT_PATH
tar -czf temp_configuration_file.tar.gz -C terraform --exclude .git --exclude venv .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ phases:
TF_WORKSPACE_NAME=$VENDED_ACCOUNT_ID-aft-account-customizations
TF_CONFIG_PATH="./temp_configuration_file.tar.gz"
cd $DEFAULT_PATH/$CUSTOMIZATION/terraform
for f in *.jinja; do jinja2 $f -D timestamp="$TIMESTAMP" -D provider_region=$CT_MGMT_REGION -D tf_distribution_type=$TF_DISTRIBUTION -D aft_admin_role_arn=$AFT_EXEC_ROLE_ARN -D target_admin_role_arn=$VENDED_EXEC_ROLE_ARN -D terraform_org_name=$TF_ORG -D terraform_workspace_name=$TF_WORKSPACE_NAME >> ./$(basename $f .jinja).tf; done
for f in *.jinja; do jinja2 $f -D timestamp="$TIMESTAMP" -D provider_region=$CT_MGMT_REGION -D tf_distribution_type=$TF_DISTRIBUTION -D aft_admin_role_arn=$AFT_EXEC_ROLE_ARN -D target_admin_role_arn=$VENDED_EXEC_ROLE_ARN -D terraform_org_name=$TF_ORG_NAME -D terraform_workspace_name=$TF_WORKSPACE_NAME >> ./$(basename $f .jinja).tf; done
for f in *.tf; do echo "\n \n"; echo $f; cat $f; done
cd $DEFAULT_PATH/$CUSTOMIZATION
tar -czf temp_configuration_file.tar.gz -C terraform --exclude .git --exclude venv .
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ variable "audit_account_id" {

variable "aft_framework_repo_url" {
description = "Git repo URL where the AFT framework should be sourced from"
default = "git@github.com:aws-ia/terraform-aws-control_tower_account_factory.git"
default = "https://github.com/aws-ia/terraform-aws-control_tower_account_factory.git"
type = string
validation {
condition = length(var.aft_framework_repo_url) > 0
Expand Down

0 comments on commit fe981d6

Please sign in to comment.