AWS Control Tower Account Factory for Terraform

For managing Control Tower, I am using this documentation: Manage AWS accounts using Control Tower Account Factory for Terraform | Terraform | HashiCorp Developer. I didn’t add any additional configuration in the 4 repositories that need to be forked. Now I am at the deployment step, and when I run terraform plan, I see that 300+ resources will be created. I don’t understand if these resources can impact my account or workflow or delete any resources. Note that I have a production environment in the management account. # Copyright (c) HashiCorp, Inc.

SPDX-License-Identifier: MPL-2.0

module “aft” {
source = “GitHub - aws-ia/terraform-aws-control_tower_account_factory: AWS Control Tower Account Factory
ct_management_account_id = var.ct_management_account_id
log_archive_account_id = var.log_archive_account_id
audit_account_id = var.audit_account_id
aft_management_account_id = var.aft_management_account_id
ct_home_region = var.ct_home_region
tf_backend_secondary_region = var.tf_backend_secondary_region

vcs_provider = “github”
account_request_repo_name = “./learn-terraform-aft-account-request”
account_provisioning_customizations_repo_name = “./learn-terraform-aft-account-provisioning-customizations”
global_customizations_repo_name = “./learn-terraform-aft-global-customizations”
account_customizations_repo_name = “./learn-terraform-aft-account-customizations”
}