Anton Tayanovskyy
Anton Tayanovskyy
Please remember to upvote the issue if it is important to you as it helps our team prioritize!
Having a quick look again here, I believe it's entirely possible to host a static website on S3 with Pulumi. Please check out the https://github.com/pulumi/examples/blob/master/aws-ts-static-website/index.ts example. This example involves a...
@flostadler this is the little anomaly I came across when editing names.csv in the patch-set that you were curious about.
There are some issues in the bridge https://github.com/pulumi/pulumi-terraform-bridge/issues/1937 that make the move less trivial than would be ideal, should fix those first.
In addition to this noting that re-enabling quick sight will cause a lot of similar-looking types being generated increasing the SDK sizes dramatically even if the type names are shorter....
Another possibility is an LRU cache where the user can configure the max disk size allowed, and have Pulumi evict plugins from the cache when it is about to reach...
I had a quick conversation with @mjeffryes and wanted to add some color here, we need to be careful with scope as there is a fair amount of work here...
Another one ```terraform data "aws_nat_gateways" "ngws" { vpc_id = var.vpc_id filter { name = "state" values = ["available"] } } data "aws_nat_gateway" "ngw" { count = length(data.aws_nat_gateways.ngws.ids) id = tolist(data.aws_nat_gateways.ngws.ids)[count.index]...
There is probably a lot. Can we quickly fail here to drop the example instead of emitting this?
Thank you for reporting this, it seems unexpected. It looks like the schema for logsConfig.lambdaForwarder is defined here: https://github.com/DataDog/terraform-provider-datadog/blob/68ac411965bf6eac4d16aaaeacb432c3d5ac64e3/datadog/fwprovider/resource_datadog_integration_aws_account.go#L283 The docs say "The `lambda_fowarder` block is required within, but may...