Hi, does anyone have a working container provision...
# azure
a
Hi, does anyone have a working container provisioning example on azure for cosmosdb ?
c
like this?
Copy code
const cosmosDbContainerSettings = new cosmosdb.SqlContainer("settings", {
    ...defaultArgs,
    name: "settings",
    accountName: cosmosDbAccount.name,
    databaseName: cosmosDbDatabase.name,
    partitionKeyPath: "/id",
    defaultTtl: -1,
    throughput: 400,
  });
actually, that's not using
azure-native
a
ok thx! let me test, from the documentation it seems saying azure-native is the right pkg replacing pulumi-azure, right?
c
correct. It is, we just haven't migrated over yet for existing infra
b
a