diff --git a/environment_setup/iac-create-environment-pipeline-tf.yml b/environment_setup/iac-create-environment-pipeline-tf.yml index ef184546..d7e8d79d 100644 --- a/environment_setup/iac-create-environment-pipeline-tf.yml +++ b/environment_setup/iac-create-environment-pipeline-tf.yml @@ -1,4 +1,4 @@ -# CI/PR Pipeline that deploys an TF template to create or update the resources needed by the other pipelines. +# CI/PR Pipeline that deploys a TF template to create or update the resources needed by the other pipelines. trigger: branches: include: @@ -21,12 +21,12 @@ variables: - group: devopsforai-aml-vg steps: -- task: charleszipp.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-installer.TerraformInstaller@0 +- task: jasonjohnson.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-installer.TerraformInstaller@0 displayName: 'Use Terraform 0.12.24' inputs: terraformVersion: 0.12.24 -- task: charleszipp.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-cli.TerraformCLI@0 +- task: jasonjohnson.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-cli.TerraformCLI@0 displayName: 'TF init - Deploy MLOps resources to Azure' inputs: command: init @@ -42,13 +42,13 @@ steps: backendAzureRmContainerName: 'tfstate-cont' backendAzureRmKey: 'mlopsinfra.tfstate' -- task: charleszipp.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-cli.TerraformCLI@0 +- task: jasonjohnson.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-cli.TerraformCLI@0 displayName: 'TF validate - Deploy MLOps resources to Azure' inputs: command: validate workingDirectory: '$(Build.SourcesDirectory)/environment_setup/tf-templates' -- task: charleszipp.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-cli.TerraformCLI@0 +- task: jasonjohnson.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-cli.TerraformCLI@0 displayName: 'TF plan - Deploy MLOps resources to Azure' inputs: command: plan @@ -59,7 +59,7 @@ steps: TF_VAR_RESOURCE_GROUP: $(RESOURCE_GROUP) TF_VAR_WORKSPACE_NAME: $(WORKSPACE_NAME) -- task: charleszipp.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-cli.TerraformCLI@0 +- task: jasonjohnson.azure-pipelines-tasks-terraform.azure-pipelines-tasks-terraform-cli.TerraformCLI@0 displayName: 'TF apply - Deploy MLOps resources to Azure' inputs: command: apply @@ -69,4 +69,3 @@ steps: TF_VAR_BASE_NAME: $(BASE_NAME) TF_VAR_RESOURCE_GROUP: $(RESOURCE_GROUP) TF_VAR_WORKSPACE_NAME: $(WORKSPACE_NAME) -