Hi! I have a question about Pulumi dynamic provide...
# general
g
Hi! I have a question about Pulumi dynamic providers. I would like to manage some entities in my system (e.g. user accounts) via that system's REST API. I created a sample Pulumi program with dynamic provider implementation: https://gitlab.com/-/snippets/2101279 But I have some issues, for example: • my pulumi preview continuously shows some differences to the outputs (https://gitlab.com/-/snippets/2101279#LC1) - but in the diff there are no properties changed • I cannot see userId and password outputs (specified as outputs of my dynamic resource) to be included in the outputs (https://gitlab.com/-/snippets/2101279#LC20) • I am not sure how I should declare that the User.password output property is a secret - shall I use additionalSecretOutputs in the provider opts to the User super constructor call (at https://gitlab.com/-/snippets/2101279#LC124)?
I was able to find the causes of my issues - for those interested I've written down some notes: https://gitlab.com/-/snippets/2101279#note_546332942