From aed173a7f43648aa3e035b25c3105199fb41f6ed Mon Sep 17 00:00:00 2001 From: Are Almaas Date: Thu, 21 Nov 2024 15:38:34 +0100 Subject: [PATCH] feat(azure): adjust SKU and storage for yt01 and prod --- .azure/modules/postgreSql/create.bicep | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.azure/modules/postgreSql/create.bicep b/.azure/modules/postgreSql/create.bicep index 281ad3594..acc355364 100644 --- a/.azure/modules/postgreSql/create.bicep +++ b/.azure/modules/postgreSql/create.bicep @@ -33,9 +33,11 @@ param sku Sku @export() type StorageConfiguration = { + @minValue(32) storageSizeGB: int autoGrow: 'Enabled' | 'Disabled' 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 }