Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
2.0 KiB
Markdown
Raw Permalink Normal View History

2022-04-06 18:43:54 -07:00
---
2023-06-02 21:41:36 -07:00
title_tag: "Pulumi vs. Cloud Templates"
meta_desc: Learn about the major differences between Pulumi and cloud templating solutions like AWS CloudFormation and Microsoft Azure Resource Manager (ARM).
title: Cloud Templates
h1: Pulumi vs. Cloud templates
2023-06-08 16:15:52 -07:00
meta_image: /images/docs/meta-images/docs-meta.png
2022-04-06 18:43:54 -07:00
aliases:
- /docs/reference/vs/cloud_templates/
- /docs/intro/vs/cloud_templates/
- /docs/intro/vs/cloud-templates/
2022-04-06 18:43:54 -07:00
---
Several cloud providers offer their own form of infrastructure-as-code, typically by way of JSON- or YAML-based templating solutions. Examples include AWS CloudFormation for Amazon Web Services and Azure Resource Manager (ARM) for Microsoft Azure. Template files containing cloud resource configurations are usually uploaded to a hosted service in the target cloud, which then processes the files to create, update, or delete cloud infrastructure resources as necessary.
2022-04-06 18:43:54 -07:00
2022-05-03 21:23:32 -07:00
While these template-based solutions are often easy to get started with, they can be cumbersome in practice and hard to maintain at scale, and they generally only apply to a single cloud provider. Pulumi takes a different approach that allows you to use general-purpose programming languages like TypeScript, Python, C#, Go, and Java, and markup languages like YAML, to manage your infrastructure, and do target any cloud using a consistent programming model. For example, with Pulumi, you can:
2022-04-06 18:43:54 -07:00
* Use Azure Machine Learning in combination with AWS EC2, Amazon ECS, and AWS Lambda
* Provision GKE Kubernetes clusters and deploy Kubernetes apps into them
* Combine Let's Encrypt SSL certificates, Cloudflare DNS configuration, and AWS compute resources, all in the same program
Unlike many of these provider-specific services, Pulumi is [open source](https://github.com/pulumi/pulumi) and community-driven. To learn more about how Pulumi compares to some of these services in detail, see the following comparison docs:
* [Pulumi vs. AWS CloudFormation](/docs/concepts/vs/cloud-templates/cloudformation/)