Hello Everyone!! I am trying to manage datadog res...
# general
p
Hello Everyone!! I am trying to manage datadog resources using pulumi golang SDK, and it seems there is a problem with the following resource: https://github.com/pulumi/pulumi-datadog/blob/v4.46.0/sdk/go/datadog/getDashboardList.go#L41 Struct
&datadog.DashboardArgs
has an argument
DashboardLists
of type
pulumi.IntArray
, but the example passes a value of
pulumi.String
within the array, The compiler is complaining for obvious type mismatch. Am i interpreting this wrong or is there a possible error in the example? 🤔
Also i am curious why https://github.com/pulumi/pulumi-datadog/blob/v4.46.0/sdk/go/datadog/getDashboardList.go#L64 output does not follow the usual
pulumi.Output
but a struct with go Strings
e
If examples in the docs are wrong please raise issues on the repo for the team to notice.