Skip to content

Commit 4723984

Browse files
committed
Fix breaking change in Azure CLI
1 parent 77e4a44 commit 4723984

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ to set up a new instance of Azure Databases for PostgreSQL using the Azure CLI:
3333
dbname="----CHANGEME----" # e.g. myfeaturesservicedb
3434
dbuser="----CHANGEME----" # e.g. admin
3535
dbpassword="----CHANGEME----" # e.g. featureService1!Rocks
36+
dbsku="----CHANGEME----" # e.g. GP_Gen4_2
3637
resource_group="----CHANGEME----" # e.g. myfeaturesserviceresourcegroup
3738
resource_location="----CHANGEME----" # e.g. eastus
3839

@@ -46,7 +47,7 @@ az postgres server create \
4647
--admin-password="$dbpassword" \
4748
--resource-group="$resource_group" \
4849
--location="$resource_location" \
49-
--performance-tier="Standard"
50+
--sku-name="$dbsku"
5051
```
5152

5253
Next, find the database in the [Azure Portal](https://portal.azure.com) and

0 commit comments

Comments
 (0)