Commit 4dce375 1 parent 7a506b3 commit 4dce375 Copy full SHA for 4dce375
File tree 1 file changed +10
-0
lines changed
.azure/modules/postgreSql
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -141,13 +141,23 @@ resource postgres 'Microsoft.DBforPostgreSQL/flexibleServers@2024-08-01' = {
141
141
tags : tags
142
142
}
143
143
144
+ resource enable_extensions 'Microsoft.DBforPostgreSQL/flexibleServers/configurations@2024-08-01' = {
145
+ parent : postgres
146
+ name : 'azure.extensions'
147
+ properties : {
148
+ value : 'PG_TRGM'
149
+ source : 'user-override'
150
+ }
151
+ }
152
+
144
153
resource track_io_timing 'Microsoft.DBforPostgreSQL/flexibleServers/configurations@2024-08-01' = if (enableQueryPerformanceInsight ) {
145
154
parent : postgres
146
155
name : 'track_io_timing'
147
156
properties : {
148
157
value : 'on'
149
158
source : 'user-override'
150
159
}
160
+ dependsOn : [enable_extensions ]
151
161
}
152
162
153
163
resource pg_qs_query_capture_mode 'Microsoft.DBforPostgreSQL/flexibleServers/configurations@2024-08-01' = if (enableQueryPerformanceInsight ) {
You can’t perform that action at this time.
0 commit comments