Anton Tayanovskyy

Results 334 comments of Anton Tayanovskyy

Unfortunately I could not run a full repro since our sandbox account does not support aws.organizations.Account but I could run a partial repro based on the provided statefile and program,...

Checking with @aureq this is actually worse for the customer as they're sending numbers in and it still converts to string. We definitely should fix this. Will look into getting...

Protobuf is finicky I'd rather pull in these changes via bridge upgrades.

https://github.com/pulumi/pulumi-aws/issues/3655

Flakes on master in https://github.com/pulumi/pulumi-aws/issues/3636 fwiw.. Not sure what's going on here.

https://github.com/pulumi/pulumi-aws/actions/runs/8438448044 another instance

https://github.com/pulumi/ci-mgmt/pull/863 I think ultimately fixed it by doubling the timeout window.

https://github.com/hashicorp/terraform-provider-aws/blob/master/internal/service/acm/certificate.go#L331 it looks like `*schema.ResourceData` is not used as a source of the timeout information in the upstream code for resourceCertificateCreate, instead it decides on constant timeouts. So this looks...

Possibly related https://github.com/hashicorp/terraform-provider-aws/issues/13031 though on an adjacent validation resource not this one.

Sure @mikhailshilkov the Pulumi program is as follows: ```typescript import * as pulumi from "@pulumi/pulumi"; import * as aws from "@pulumi/aws"; const example = new aws.wafv2.WebAcl("example", { name: "managed-rule-example", defaultAction:...