Skip to content

Commit 4dda7c3

Browse files
committed
linting
1 parent dedea9d commit 4dda7c3

3 files changed

Lines changed: 60 additions & 60 deletions

File tree

alz/azuredevops/main.tf

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -103,26 +103,26 @@ module "azure_devops" {
103103
}
104104

105105
module "file_manipulation" {
106-
source = "../../modules/file_manipulation"
107-
vcs_type = "azuredevops"
108-
files = module.files.files
109-
use_self_hosted_agents_runners = var.use_self_hosted_agents
110-
resource_names = local.resource_names
111-
use_separate_repository_for_templates = var.use_separate_repository_for_templates
112-
iac_type = var.iac_type
113-
module_folder_path = local.starter_module_folder_path
114-
bicep_config_file_path = var.bicep_config_file_path
115-
starter_module_name = var.starter_module_name
116-
project_or_organization_name = var.azure_devops_project_name
117-
root_module_folder_relative_path = var.root_module_folder_relative_path
118-
on_demand_folder_repository = var.on_demand_folder_repository
119-
on_demand_folder_artifact_name = var.on_demand_folder_artifact_name
120-
ci_template_file_name = local.ci_template_file_name
121-
cd_template_file_name = local.cd_template_file_name
122-
pipeline_target_folder_name = local.target_folder_name
123-
bicep_parameters_file_path = var.bicep_parameters_file_path
124-
agent_pool_or_runner_configuration = local.agent_pool_or_runner_configuration
125-
pipeline_files_directory_path = local.pipeline_files_directory_path
126-
pipeline_template_files_directory_path = local.pipeline_template_files_directory_path
127-
terraform_architecture_file_path = var.terraform_architecture_file_path
106+
source = "../../modules/file_manipulation"
107+
vcs_type = "azuredevops"
108+
files = module.files.files
109+
use_self_hosted_agents_runners = var.use_self_hosted_agents
110+
resource_names = local.resource_names
111+
use_separate_repository_for_templates = var.use_separate_repository_for_templates
112+
iac_type = var.iac_type
113+
module_folder_path = local.starter_module_folder_path
114+
bicep_config_file_path = var.bicep_config_file_path
115+
starter_module_name = var.starter_module_name
116+
project_or_organization_name = var.azure_devops_project_name
117+
root_module_folder_relative_path = var.root_module_folder_relative_path
118+
on_demand_folder_repository = var.on_demand_folder_repository
119+
on_demand_folder_artifact_name = var.on_demand_folder_artifact_name
120+
ci_template_file_name = local.ci_template_file_name
121+
cd_template_file_name = local.cd_template_file_name
122+
pipeline_target_folder_name = local.target_folder_name
123+
bicep_parameters_file_path = var.bicep_parameters_file_path
124+
agent_pool_or_runner_configuration = local.agent_pool_or_runner_configuration
125+
pipeline_files_directory_path = local.pipeline_files_directory_path
126+
pipeline_template_files_directory_path = local.pipeline_template_files_directory_path
127+
terraform_architecture_file_path = var.terraform_architecture_file_path
128128
}

alz/github/main.tf

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -104,27 +104,27 @@ module "github" {
104104
}
105105

106106
module "file_manipulation" {
107-
source = "../../modules/file_manipulation"
108-
vcs_type = "github"
109-
files = module.files.files
110-
use_self_hosted_agents_runners = var.use_self_hosted_runners
111-
resource_names = local.resource_names
112-
use_separate_repository_for_templates = var.use_separate_repository_for_templates
113-
iac_type = var.iac_type
114-
module_folder_path = local.starter_module_folder_path
115-
bicep_config_file_path = var.bicep_config_file_path
116-
starter_module_name = var.starter_module_name
117-
project_or_organization_name = var.github_organization_name
118-
root_module_folder_relative_path = var.root_module_folder_relative_path
119-
on_demand_folder_repository = var.on_demand_folder_repository
120-
on_demand_folder_artifact_name = var.on_demand_folder_artifact_name
121-
ci_template_file_name = local.ci_template_file_name
122-
cd_template_file_name = local.cd_template_file_name
123-
pipeline_target_folder_name = local.target_folder_name
124-
bicep_parameters_file_path = var.bicep_parameters_file_path
125-
agent_pool_or_runner_configuration = local.agent_pool_or_runner_configuration
126-
pipeline_files_directory_path = local.pipeline_files_directory_path
127-
pipeline_template_files_directory_path = local.pipeline_template_files_directory_path
128-
concurrency_value = local.resource_names.storage_container
129-
terraform_architecture_file_path = var.terraform_architecture_file_path
107+
source = "../../modules/file_manipulation"
108+
vcs_type = "github"
109+
files = module.files.files
110+
use_self_hosted_agents_runners = var.use_self_hosted_runners
111+
resource_names = local.resource_names
112+
use_separate_repository_for_templates = var.use_separate_repository_for_templates
113+
iac_type = var.iac_type
114+
module_folder_path = local.starter_module_folder_path
115+
bicep_config_file_path = var.bicep_config_file_path
116+
starter_module_name = var.starter_module_name
117+
project_or_organization_name = var.github_organization_name
118+
root_module_folder_relative_path = var.root_module_folder_relative_path
119+
on_demand_folder_repository = var.on_demand_folder_repository
120+
on_demand_folder_artifact_name = var.on_demand_folder_artifact_name
121+
ci_template_file_name = local.ci_template_file_name
122+
cd_template_file_name = local.cd_template_file_name
123+
pipeline_target_folder_name = local.target_folder_name
124+
bicep_parameters_file_path = var.bicep_parameters_file_path
125+
agent_pool_or_runner_configuration = local.agent_pool_or_runner_configuration
126+
pipeline_files_directory_path = local.pipeline_files_directory_path
127+
pipeline_template_files_directory_path = local.pipeline_template_files_directory_path
128+
concurrency_value = local.resource_names.storage_container
129+
terraform_architecture_file_path = var.terraform_architecture_file_path
130130
}

alz/local/main.tf

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -48,21 +48,21 @@ module "azure" {
4848
}
4949

5050
module "file_manipulation" {
51-
source = "../../modules/file_manipulation"
52-
vcs_type = "local"
53-
files = module.files.files
54-
resource_names = local.resource_names
55-
iac_type = var.iac_type
56-
module_folder_path = local.starter_module_folder_path
57-
bicep_config_file_path = var.bicep_config_file_path
58-
starter_module_name = var.starter_module_name
59-
root_module_folder_relative_path = var.root_module_folder_relative_path
60-
on_demand_folder_repository = var.on_demand_folder_repository
61-
on_demand_folder_artifact_name = var.on_demand_folder_artifact_name
62-
pipeline_target_folder_name = local.script_target_folder_name
63-
bicep_parameters_file_path = var.bicep_parameters_file_path
64-
pipeline_files_directory_path = local.script_source_folder_path
65-
terraform_architecture_file_path = var.terraform_architecture_file_path
51+
source = "../../modules/file_manipulation"
52+
vcs_type = "local"
53+
files = module.files.files
54+
resource_names = local.resource_names
55+
iac_type = var.iac_type
56+
module_folder_path = local.starter_module_folder_path
57+
bicep_config_file_path = var.bicep_config_file_path
58+
starter_module_name = var.starter_module_name
59+
root_module_folder_relative_path = var.root_module_folder_relative_path
60+
on_demand_folder_repository = var.on_demand_folder_repository
61+
on_demand_folder_artifact_name = var.on_demand_folder_artifact_name
62+
pipeline_target_folder_name = local.script_target_folder_name
63+
bicep_parameters_file_path = var.bicep_parameters_file_path
64+
pipeline_files_directory_path = local.script_source_folder_path
65+
terraform_architecture_file_path = var.terraform_architecture_file_path
6666
}
6767

6868
resource "local_file" "alz" {

0 commit comments

Comments
 (0)