sparse-intern-71089
10/06/2023, 6:37 AMlittle-cartoon-10569
10/07/2023, 7:51 PMlittle-cartoon-10569
10/07/2023, 7:52 PMlittle-cartoon-10569
10/07/2023, 7:53 PMkind-motorcycle-43615
10/09/2023, 6:25 AMvar server = new Azure.MSSql.Server(
"server",
new()
{
Name = "pulumi-mssql-test",
ResourceGroupName = resourceGroup.Name,
Location = resourceGroup.Location,
Version = "12.0",
MinimumTlsVersion = "1.2",
AdministratorLogin = "sadmin",
AdministratorLoginPassword = "Str0ngPa$word12",
AzureadAdministrator = new Azure.MSSql.Inputs.ServerAzureadAdministratorArgs
{
LoginUsername = "pulumi-app",
ObjectId = current.ObjectId,
TenantId = current.TenantId,
},
}
);
Additionally, we can create an MSSQL server instance using Pulumi.Aws.Rds.Instance. But, when we try to run pulumi up
with that approach (Creating a Server using Pulumi.Aws.Rds.Instance and creating DB users using Pulumiverse.MSSQL package), it also shows the below error.
pulumi:providers:mssql (default_0_0_7_github_/api.github.com/pulumiverse/pulumi-mssql):
error: rpc error: code = Unknown desc = Missing SQL authentication config: One of authentication methods must be provided: sql_auth, azure_auth
little-cartoon-10569
10/09/2023, 7:23 PM