Hi All,
Does anyone have experience or knowledge in provisioning infrastructure across multiple cloud providers using the same codebase with Pulumi? Is this possible? I want to maintain single code for azure aws oracle and google cloud. When need have provision infra for the same
m
modern-zebra-45309
08/05/2024, 11:18 AM
You can have a single Pulumi codebase and deploy to different cloud platforms but you'll have to write cloud-specific code, there is no universal abstraction. You can certainly create your own abstractions, e.g., a VM resource that hides the cloud-specific implementation details.
l
little-cartoon-10569
08/05/2024, 8:49 PM
One Pulumi project can have any number of providers in it. You can deploy a VM to Azure and a Bucket to AWS right beside each other.