I’ve made a change to a Lambda function: ```epheme...
# help
s
I’ve made a change to a Lambda function:
Copy code
ephemeralStorageSize: Size.gibibytes(4),
and SST says it doesn’t detect any infrastructure changes. 🤔 EDIT: oh.. shoot. the setting is completely ignored. I tried creating a new Lambda func with 1024MB of ephemeral storage and I see in AWS it’s 512MB. I am on SST 1.1.2 though, and 1.2.16 is out, so I’ll try upgrading later when I get home
f
Hey @Sam Hulick, we lifted the field to the top level, ie.
Copy code
new Function(stack, "Function", {
  diskSize: "4 GB",
})
s
@Frank oops. Thanks! It threw me off because TypeScript auto completed the property I used
Maybe that's a mistake and it's supposed to be within the cdk property?