We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From the Terraform init task in azure-pipelines.yml:
azure-pipelines.yml
- task: TerraformTaskV3@3 displayName: Terraform init inputs: provider: azurerm command: init workingDirectory: "$(System.DefaultWorkingDirectory)/terraform" # https://developer.hashicorp.com/terraform/tutorials/automation/automate-terraform#automated-terraform-cli-workflow commandOptions: -input=false # service connection backendServiceArm: deployer # needs to match main.tf backendAzureRmResourceGroupName: courtesy-cards-eligibility-terraform backendAzureRmStorageAccountName: courtesycardsterraform backendAzureRmContainerName: tfstate backendAzureRmKey: terraform.tfstate
We need to variablize the following inputs:
backendAzureRmResourceGroupName: courtesy-cards-eligibility-terraform
backendAzureRmStorageAccountName: courtesycardsterraform
While keeping the above comment in mind:
# needs to match main.tf
See #292
Will be impacted by the work from #284, but ideally here we don't care about how the pipeline is triggered, just where the input values come from.
The text was updated successfully, but these errors were encountered:
angela-tran
Successfully merging a pull request may close this issue.
From the Terraform init task in
azure-pipelines.yml
:We need to variablize the following inputs:
backendAzureRmResourceGroupName: courtesy-cards-eligibility-terraform
backendAzureRmStorageAccountName: courtesycardsterraform
While keeping the above comment in mind:
# needs to match main.tf
See #292
Additional context
Will be impacted by the work from #284, but ideally here we don't care about how the pipeline is triggered, just where the input values come from.
The text was updated successfully, but these errors were encountered: