Ian Wahbe

Results 264 comments of Ian Wahbe

Could you provide a full repro? I'm having trouble figuring out what type `aws.ec2.route` is. Is this whole block run in an apply?

This example can be reduced to ```python import pulumi import pulumi_aws as aws import pulumi_awsx as awsx from typing import Sequence region = aws.get_region() inspection_vpc = awsx.ec2.Vpc( "inspection-vpc", awsx.ec2.VpcArgs( cidr_block="10.129.0.0/24",...

Hey @spock-yh, thanks for bringing this to our attention. ~Could you run this again and send us a detailed diff for the update. What command are using to run `pulumi`,...

I'm able to reproduce the issue with only: ```typescript import * as aws from "@pulumi/aws"; const logsBucket = new aws.s3.Bucket("i-bucket", {}, {}); new aws.s3.BucketLifecycleConfigurationV2("website-logs-lifecycle", { bucket: logsBucket.bucket, rules: [ {...

@spock-yh It looks like the bridged TF provider doesn't allow specifying both `days` and `expiredObjectDeleteMarker`. Doing so results in spurious diffs, as you experienced. The solution is to specify only...

My PR was brittle to upgrades in GCC version. See comments https://github.com/ArthurSonzogni/Diagon/pull/42#issuecomment-1227204706 and https://github.com/ArthurSonzogni/Diagon/pull/42#issuecomment-1227207944 That _should_ do it.

@aq17 We should be able to test that we correctly generate the version during codegen. It won't be a full integration test via `pulumi convert`, but we can still add...

I think the desired behavior described in the original post is great! It would be even better if we could leverage common pulumi errors and the [errors.Unwrap](https://pkg.go.dev/errors#Unwrap) function to display...

This will mean that newly generated SDKs won't work with older versions of the Pulumi SDK, and thus moving to a new version of an SDK will be a breaking...