Anton Tayanovskyy
Anton Tayanovskyy
``` CLI Version 3.111.1 Go Version go1.22.1 Go Compiler gc Plugins NAME VERSION aws 6.33.1 python unknown Host OS darwin Version 14.4.1 Arch arm64 This project is written in python:...
one more: https://github.com/pulumi/pulumi-aws/issues/3902
Thank you! Will release an update as soon as upstream supports this.
Related: https://github.com/pulumi/examples/issues/1081 (also CC @AaronFriel )
Complete repro: ```typescript import * as aws from "@pulumi/aws"; const allowedIpSet = new aws.wafv2.IpSet("example", { name: "example", description: "Example IP set", scope: "REGIONAL", ipAddressVersion: "IPV4", addresses: [ "1.2.3.4/32", "5.6.7.8/32", ],...
Breaking this down, EventTarget does not refresh cleanly likely following TF where undefined runCommandTargets end up being replaced by an empty list. This is a very common self-correcting form of...
managedPolicyArns is exactly as in https://github.com/pulumi/pulumi-aws/issues/2246
Kudos @AaronFriel for pointing this out.
Talking with @corymhall here we could also take a provider option to set in dev stacks that would make all forceDelete assume true.
History: https://github.com/pulumi/pulumi-aws/commit/1eaf9df6ac5eba2216ef681dc3948c95ce432703 Looks like some research is needed to inform direction here as taking a different guess as to which way of using the resources is canonical from what upstream...