sparse-intern-71089
10/05/2020, 10:26 PMwet-noon-14291
10/06/2020, 6:04 AMtall-librarian-49374
10/06/2020, 6:06 AMwet-noon-14291
10/06/2020, 6:42 AMwet-noon-14291
10/06/2020, 10:06 AMwitty-candle-66007
10/06/2020, 1:24 PMexampleserver
and the configuration name was too long when uniquified by pulumi. So I changed it to exConf
and it worked.
I wonder if for some reason the C# use-case is hiding those errors and so it fails downstream.witty-candle-66007
10/06/2020, 1:35 PMwitty-candle-66007
10/06/2020, 2:17 PMname
attribute in the Configuration definition. So, the code defaults to the name of the configuration. However, that name
parameter needs to be a name of Postgres configuration option (e.g. backslash_quote
)
Example:
const exampleConfiguration = new azure.postgresql.Configuration('mitchCfg', {
name: 'backslash_quote',
resourceGroupName: exampleResourceGroup.name,
serverName: exampleServer.name,
value: 'off',
});
witty-candle-66007
10/06/2020, 2:22 PMserver parameters
view for the PostgresSQL server, you'll see the options names that can be used when setting the configuration.
Also, I'll get the documentation updated accordingly.