colossal-ram-89482
02/24/2020, 1:00 AMfilename
arguments to supply the code deployment package. In Pulumi, in both TS/JS and Python, only the S3 option seems to be available. A couple of questions:
1) Why is this the case?
2) My understanding is that the Pulumi providers are usually auto-generated from the corresponding Terraform provider. Where is the logic that removes the filename
argument in this case? (Or is auto-generation not used?)gentle-diamond-70147
02/24/2020, 3:57 PMfilename
in Pulumi is code
- https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/aws/lambda/#FunctionArgs-code.colossal-ram-89482
02/25/2020, 3:55 AMcode
a try soon, I’m sure it will work!tfgen
processes “overlays” to achieve this. But I have not found an example overlay. The “AWS overlays directory” link at the bottom of this README returns a 404: https://github.com/pulumi/pulumi-terraform-bridgegentle-diamond-70147
02/25/2020, 4:02 AMresources.go
in each provider defines this - e.g. here's the code
option for aws_lambda_function
- https://github.com/pulumi/pulumi-aws/blob/master/resources.go#L1476-L1495colossal-ram-89482
02/25/2020, 4:14 AM