From e3e8bb2fe8b56dae4c186cffb854c90f7ff30302 Mon Sep 17 00:00:00 2001 From: Are Almaas Date: Thu, 21 Nov 2024 15:39:52 +0100 Subject: [PATCH] cleanup --- .azure/modules/postgreSql/create.bicep | 1 + 1 file changed, 1 insertion(+) diff --git a/.azure/modules/postgreSql/create.bicep b/.azure/modules/postgreSql/create.bicep index acc355364..19ffd6237 100644 --- a/.azure/modules/postgreSql/create.bicep +++ b/.azure/modules/postgreSql/create.bicep @@ -36,6 +36,7 @@ type StorageConfiguration = { @minValue(32) storageSizeGB: int autoGrow: 'Enabled' | 'Disabled' + @description('The type of storage account to use. Default is Premium_LRS.') type: 'Premium_LRS' | 'PremiumV2_LRS' @description('Required when type is Premium_LRS or PremiumV2_LRS') tier: 'P1' | 'P2' | 'P3' | 'P4' | 'P6' | 'P10' | 'P15' | 'P20' | 'P30' | 'P40' | 'P50' | 'P60' | 'P70' | 'P80' | null