bitter-diamond-17281
09/11/2024, 4:22 AMresources:
providers:
aws-provider-1:
type: pulumi:providers:aws
....
aws-provider-2:
type: pulumi:providers:aws
....
etc and so forth.
In typescript code when creating AWS resources how can I reference these providers that have been defined here? They're not available via the pulumi.Config API nor can I see them defined. The AI tool of course is just wrong whole sale so that's out..big-architect-71258
09/11/2024, 7:47 AMResourceOptions
for resources https://www.pulumi.com/docs/concepts/options/provider/ or InvokeOptions
for functions (data sources).bitter-diamond-17281
09/11/2024, 1:49 PM