Skip to content

Commit 10421d9

Browse files
authored
Merge branch 'main' into dependabot/pip/sqlmodel-0.0.19
2 parents 50a1bb6 + 8633cb1 commit 10421d9

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ module pg 'pg.bicep' = {
4949
aadAdminType: aadAdminType
5050
databaseNames: [ databaseName ]
5151
storage: {
52-
storageSizeGB: 128
52+
storageSizeGB: 32
5353
}
5454
version: '15'
5555
allowAllIPsFirewall: true

infra/pg.bicep

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ resource postgresServer 'Microsoft.DBforPostgreSQL/flexibleServers@2023-03-01-pr
5353
name: name
5454
location: location
5555
tags: tags
56-
56+
sku: {
57+
name: 'Standard_B1ms'
58+
tier: 'Burstable'
59+
}
5760
properties: union(authProperties, {
5861
version: version
5962
storage: storage
60-
sku: {
61-
name: 'Standard_D2ds_v4'
62-
tier: 'GeneralPurpose'
63-
}
63+
6464
highAvailability: {
6565
mode: 'Disabled'
6666
}

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
psycopg2==2.9.9
22
python-dotenv==1.0.1
3-
SQLAlchemy[asyncio]==2.0.30
4-
pgvector==0.2.5
3+
SQLAlchemy[asyncio]==2.0.31
4+
pgvector==0.3.0
55
SQLModel==0.0.19
66
asyncpg==0.29.0
77
azure-identity

0 commit comments

Comments
 (0)