I upgraded Pulumi and now `cloud.Table` is failing...
# general
p
I upgraded Pulumi and now
cloud.Table
is failing with a requirement of
Missing required property 'readCapacity'
This wasn't a requirement before, and adding
Copy code
new cloud.Table("assetTable", "id","string",{
  readCapacity: 5,
  writeCapacity: 5
});
doesn't seem to fix it
w
What is the full error you see?
And if possible - could you open a GitHub issue in the pulumi/cloud repo so we can take a look?
p
I was able to work around it by building a table and endpoint with awsx - it actually worked better than the Cloud abstraction