This message was deleted.
# general
s
This message was deleted.
e
Does such a thing exist?
Not really, we did start working on something like this (https://www.pulumi.com/docs/tutorials/cloudfx/) but there wasn't really much user value to it. It kinda forced targeting lowest common denominator which often wasn't enough for users.
Essentially, why should a Pulumi developer need to hard code the provider into the IaC?
As above, but this is also the same for I think all other IaC tools on the market. Having said that at least it's possible with pulumi to write an abstraction like cloudfx if this did turn out to have value to someone.
Is this a sign that the native providers are not being prioritized?
Not at all! Our current set of native providers continue to be worked on as a top tier providers, and we're working on improving the foundations of writing providers to make it easier for the community to start writing native-providers as well.
r
I’m addition to this one of the big challenges comes not just with the development of a universal Pulumi implementation that would cross multiple providers but the lack of universal standard of how Cloud providers create their APIs I think it goes without saying that all competing cloud providers know we will live a multi cloud World. But the very design of their cloud networks alone leads to a lot of differences in design and implementation that can’t easily be universalised in a single Pulumi “wrapper” (for want of a better word). Take for example Networking. Cloud networking is software defined and in Azure a VNet is regional. In GCP a VPC is Global but subnets are regional. In addition IAM would be come increasingly complex and as would resource grouping as Azure uses the concept of Resource Groups and GCP uses Projects. Building a universal process around these conflicting constructs would be very difficult and to find the point of interoperable I expect would result in a reduction in the API coverage for Pulumi. (Which is the opposite direction of Native API providers in Pulumi)
1