Vivek Lakshmanan

Results 115 comments of Vivek Lakshmanan

This feels like another manifestation of https://github.com/hashicorp/terraform-provider-aws/issues/5725. Could you make sure you have a subnet created in the availability zone being chosen?

I followed up with my code in https://github.com/pulumi/pulumi-aws-native/issues/614 to import the workgroup using the AWS provider and it just worked for me: ``` pulumi import aws:redshiftserverless/workgroup:Workgroup 'Workgroup Name' 'jobilla' --protect=falsePreviewing...

@konnta0 thanks for opening the issue! Looks like the schema generation is being a bit too cautious here: https://github.com/pulumi/pulumi-kubernetes/blob/fa399ca3a3eae8401de717c67dc351e6932d6d91/provider/pkg/gen/schema.go#L584 i.e. the above special casing should only take effect when the...

@lblackstone for thoughts on the first part.

@dustingraves the `restResourceId` is an output type: https://www.pulumi.com/docs/intro/concepts/inputs-outputs/ since its not known ahead of time. The output you see is the output type wrapping the string value. If you want...

This is a result of https://github.com/pulumi/pulumi-terraform-bridge/issues/529

Can you post a fragment of the error message you mentioned included the secret value?

I believe this is coming straight from the API server, not something that the provider or Pulumi is doing. You could confirm by trying to provide that same payload using...

@mastoj From what I could see, it would be a little messy and brittle to handle this within the provider I feel. The better approach might be to file an...

Another instance of https://github.com/pulumi/pulumi-terraform-bridge/issues/529