Daniel Bradley

Results 146 comments of Daniel Bradley

That's great thanks! Yes, it looks like we were trying to use `pulumictl` to set the version _before_ we'd installed `pulumictl`. Will get this merged and test cutting a new...

@karthik-rangarajan does the replacement only show during the preview, or does it actually attempt to re-create the resource at the point of deployment? Also, from the preview, it appears that...

Hi @mike-chen-samsung I've been unable to reproduce this issue myself. Does this erorr occurr in a Pulumi program which only has that one `getBucketObject` call and no other code? There's...

Hi @bglgwyng the issue is that the `get` function only requires the rule name, not the ARN. E.g. ```typescript export const newEventRule = new aws.cloudwatch.EventRule("dansTestEventRule", { scheduleExpression: "cron(0 12 *...

@mikhailshilkov I walked through the issue with Harry and have reworded to include a little more detail on the scenario. Does that help answer the scenario question?

Did a quick spike and found a way to implement this in only typescript - to avoid having to do a replace on the generated JS: https://github.com/pulumi/pulumi-azure-native/pull/1879/commits/d00083902d008d906eb4418cd4973665dfb5e6e4. The only downside...

This is a documentation generation issue. I've filed this as a separate bug on that side. Closing as a duplicate of https://github.com/pulumi/pulumi/issues/11462

The `provider` output property was removed in https://github.com/pulumi/pulumi-eks/pull/746 Closing this issue as complete but have created a new issue to capture adding a helpful example to the docs: https://github.com/pulumi/pulumi-eks/issues/812

To summarise the core issue here – the schema for the SDKs specifies the default value which then generates code setting the default value if no value is provided. However,...

I've managed to reproduce this filling the extra details for the program: ```typescript import * as aws from "@pulumi/aws"; const topic = new aws.sns.Topic("dev-dataplatform-alerting-xxxx"); const queue = new aws.sqs.Queue("dev-dataplatform-alerting-xxxx"); export...