Is there a plan/road-map to add support for <Creat...
# docs
a
Is there a plan/road-map to add support for Create a service account as part of current @pulumi/datadog? Use case is that we would like to have in future AM as code for both users and service accounts with Pulumi for Datadog, actions like creating service-accounts, users, API keys…etc.
f
I’m not seeing any issues in the underlying terraform provider: https://github.com/DataDog/terraform-provider-datadog/issues
You could always take a stab at creating a dynamic provider as a stopgap. That’s what I did for API keys before they were supported.
l
Given the Pulumi provider is a wrapped Terraform provider, the best long term solution is to contribute to the upstream Terraform provider and then ask to update the Pulumi wrapper. https://github.com/pulumi/pulumi-datadog/blob/master/provider/go.mod#L17 This is what we (actually one of my team members) are currently doing for the Keycloak provider.
👍 1