This message was deleted.
# getting-started
s
This message was deleted.
m
(rubberducking a bit...) running
TF_LOG=TRACE pulumi up --logtostderr -v=9
gives me a ton of stuff to comb through...
deep in terraform it looks like we have:
Copy code
{
  "Code": {
    "ZipFile": "UEsFBgAAAAAAAAAAAAAAAAAAAAAAAA=="
  },
  "Description": "",
  "FunctionName": "docsHandlerFunc-dfeb6fb",
  "Handler": "",
  "MemorySize": 128,
  "PackageType": "Zip",
  "Publish": false,
  "Role": "arn:aws:iam::XXXXXXXX:role/docsHandlerRole-87ca993",
  "Runtime": "nodejs12.x",
  "Timeout": 3
}
ok, looks like according to the docs handler is expected to be [^\s]+, so "" is invalid
specifying a dummy handler name gets me to a different error
so yay
ok, this was my problem (I'm running a custom runtime so handler doesn't matter).
will file a bug/patch later today