Changing type of primary key in DynamoDB table is not triggering updates in Pulumi e.g. if I change ...
a
Changing type of primary key in DynamoDB table is not triggering updates in Pulumi e.g. if I change N->S or S->N it wouldn't recognize any diff
Copy code
const table = new dynamodb.Table(name, {
            name: name,
            attributes: [{ name: "ProductId", type: "S" }],
            hashKey: "ProductId",
            billingMode: BillingMode.PAY_PER_REQUEST
        })