terraform/adobuild/terraform.tfvars (29 lines of code) (raw):
# YOU MUST FILL IN THE VALUES FOR THE MISSING VARIABLES BELOW
# PAT for Azure DevOps, used to deploy and manage the project
personal_access_token = "YOUR_PAT_HERE"
# Subscription IDs for the development and production environments, these are the deployment targets for the pipelines created by this demo
# NOTE: you must use the same subscription values you used when running 'azureprep' to create the base infrastructure
production_subscription_id = "<DEV_SUBSCRIPTION>"
development_subscription_id = "<PROD_SUBSCRIPTION>"
# this is the email address of the person running the script, need at least one default reviewer, this is for commit/push requests to the demo repo that
# is created by this project. You will only need to approve commit/push if you modify the sample repo later
default_reviewers = [
"<your@email.here>"
]
# *** NO CHANGES SHOULD BE NECESSARY BELOW THIS LINE ***
# These are Key Vault names for the development and production environments, if you changed the names in the 'azureprep' directory,
# you will need to update them here! Terraform will fail deploying the adobuild directory if the names do not match the Key Vaults
# created in the 'azureprep' directory.
prod_kv_name = "prod-kv-demo"
dev_kv_name = "dev-kv-demo"
# *** NO CHANGES SHOULD BE MADE BELOW THIS LINE ***
# For demo purposes, we only require 1 reviewer, but you can increase this number in a production environment
# You should never have only one reviewer in production, as this is a security risk
minimum_number_of_reviewers = 1
# application name for the pipeline folder structure
application_name = "adopipelinedemo"
# list of environments to deploy to, THIS DEMO DOES NOT YET SUPPORT MODIFYING THIS VALUE
environments = [
"dev",
"prod"
]