Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
Merge pull request #10 from microsoft/reduce-tiers
Browse files Browse the repository at this point in the history
Reduce tiers in templates for db and others
  • Loading branch information
jamesmontemagno authored Dec 13, 2021
2 parents d78beb5 + 872100a commit 42547f8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
7 changes: 4 additions & 3 deletions deploy/Services/api.deployment.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,9 @@
"name": "[format('{0}/{1}', parameters('serverName'), parameters('sqlDBName'))]",
"location": "[parameters('location')]",
"sku": {
"name": "P2",
"tier": "Premium"
"name": "Basic",
"tier": "Basic",
"capacity": 5
},
"dependsOn": [
"[resourceId('Microsoft.Sql/servers', parameters('serverName'))]"
Expand Down Expand Up @@ -385,7 +386,7 @@
"enabled": false
},
"scale": {
"minReplicas": 1,
"minReplicas": 0,
"maxReplicas": 1
}
}
Expand Down
9 changes: 5 additions & 4 deletions deploy/Services/hub.deployment.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"sku": {
"type": "string",
"defaultValue": "S3",
"defaultValue": "S1",
"metadata": {
"description": "The SKU of App Service Plan."
}
Expand Down Expand Up @@ -125,8 +125,9 @@
"name": "[format('{0}/{1}', parameters('serverName'), parameters('sqlDBName'))]",
"location": "[parameters('location')]",
"sku": {
"name": "P2",
"tier": "Premium"
"name": "Basic",
"tier": "Basic",
"capacity": 5
},
"dependsOn": [
"[resourceId('Microsoft.Sql/servers', parameters('serverName'))]"
Expand All @@ -146,4 +147,4 @@
]
}
]
}
}

0 comments on commit 42547f8

Please sign in to comment.