Skip to content

mattruma/board-game-nerd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

Azure Environment

Create a main.parameters.json file, like the below:

{
    "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "location": {
            "value": "eastus"
        },
        "apimName": {
            "value": ""
        },
        "apimPublisherName": {
            "value": ""
        },
        "apimPublisherEmail": {
            "value": ""
        },
        "cosmosAccountName": {
            "value": ""
        },
        "cosmosLocations": {
            "value": [
                {
                    "locationName": "eastus",
                    "failoverPriority": 0,
                    "isZoneRedundant": false
                },
                {
                    "locationName": "westus",
                    "failoverPriority": 1,
                    "isZoneRedundant": false
                }
            ]
        },
        "storageAccountName": {
            "value": ""
        },
        "sqlServerName": {
            "value": ""
        },
        "sqlAdministratorLogin": {
            "value": ""
        },
        "sqlAdministratorLoginPassword": {
            "value": ""
        }
    }
}

Links

Azure DevOps