@@ -21,19 +21,20 @@ type buildMatrix struct {
2121type versionMap map [string ]map [string ]string
2222
2323type extensionMetadata struct {
24- Name string `hcl:"name" cty:"name"`
25- SQLName string `hcl:"sql_name" cty:"sql_name"`
26- ImageName string `hcl:"image_name" cty:"image_name"`
27- SharedPreloadLibraries []string `hcl:"shared_preload_libraries" cty:"shared_preload_libraries"`
28- ExtensionControlPath []string `hcl:"extension_control_path" cty:"extension_control_path"`
29- DynamicLibraryPath []string `hcl:"dynamic_library_path" cty:"dynamic_library_path"`
30- LdLibraryPath []string `hcl:"ld_library_path" cty:"ld_library_path"`
31- BinPath []string `hcl:"bin_path" cty:"bin_path"`
32- AutoUpdateOsLibs bool `hcl:"auto_update_os_libs" cty:"auto_update_os_libs"`
33- RequiredExtensions []string `hcl:"required_extensions" cty:"required_extensions"`
34- CreateExtension bool `hcl:"create_extension" cty:"create_extension"`
35- Versions versionMap `hcl:"versions" cty:"versions"`
36- Remain hcl.Body `hcl:",remain"`
24+ Name string `hcl:"name" cty:"name"`
25+ SQLName string `hcl:"sql_name" cty:"sql_name"`
26+ ImageName string `hcl:"image_name" cty:"image_name"`
27+ SharedPreloadLibraries []string `hcl:"shared_preload_libraries" cty:"shared_preload_libraries"`
28+ PostgresqlParameters map [string ]string `hcl:"postgresql_parameters" cty:"postgresql_parameters"`
29+ ExtensionControlPath []string `hcl:"extension_control_path" cty:"extension_control_path"`
30+ DynamicLibraryPath []string `hcl:"dynamic_library_path" cty:"dynamic_library_path"`
31+ LdLibraryPath []string `hcl:"ld_library_path" cty:"ld_library_path"`
32+ BinPath []string `hcl:"bin_path" cty:"bin_path"`
33+ AutoUpdateOsLibs bool `hcl:"auto_update_os_libs" cty:"auto_update_os_libs"`
34+ RequiredExtensions []string `hcl:"required_extensions" cty:"required_extensions"`
35+ CreateExtension bool `hcl:"create_extension" cty:"create_extension"`
36+ Versions versionMap `hcl:"versions" cty:"versions"`
37+ Remain hcl.Body `hcl:",remain"`
3738}
3839
3940const (
0 commit comments