Tiffani 7e199944da
Updating title tags and meta descriptions (#2509)
* Update title tags and meta desc for Templates

* Update title tags and meta desc for Learn

* Update title tags, meta desc, and H1s for Case Studies

* Update themes/default/content/learn/abstraction-encapsulation/_index.md

Co-authored-by: susan evans <susan.ra.evans@gmail.com>

* Update themes/default/content/learn/embedding-pulumi/_index.md

Co-authored-by: susan evans <susan.ra.evans@gmail.com>

* Update themes/default/content/learn/embedding-pulumi/building-api/index.md

Co-authored-by: susan evans <susan.ra.evans@gmail.com>

* Update themes/default/content/learn/building-with-pulumi/stack-references/index.md

Co-authored-by: Sean Holung <sean.holung@gmail.com>

* Update themes/default/content/templates/container-service/_index.md

Co-authored-by: Sean Holung <sean.holung@gmail.com>

* Update themes/default/content/templates/kubernetes/_index.md

Co-authored-by: Sean Holung <sean.holung@gmail.com>

* Update themes/default/content/templates/serverless-application/_index.md

Co-authored-by: Sean Holung <sean.holung@gmail.com>

* Update themes/default/content/templates/virtual-machine/_index.md

Co-authored-by: Sean Holung <sean.holung@gmail.com>

* Update themes/default/content/templates/static-website/_index.md

Co-authored-by: Sean Holung <sean.holung@gmail.com>

* Update atlassian.md

* Update index.md

---------

Co-authored-by: susan evans <susan.ra.evans@gmail.com>
Co-authored-by: Sean Holung <sean.holung@gmail.com>
2023-03-14 11:25:48 -07:00

34 lines
2.0 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title_tag: Templates for Deploying Virtual Machines
title: Virtual Machine Templates
layout: overview
description: Pulumi program templates are the fastest way to deploy virtual machines on AWS, Azure, or Google Cloud Platform. Templates come with predefined infrastructure as code so you can get started instantly.
meta_desc: Easily deploy virtual machines (VMs) on AWS, Azure, or Google Cloud Platform with Pulumi Virtual Machine templates.
meta_image: meta.png
weight: 1
---
### What are virtual machines?
Virtual Machines are virtualizations/emulations of a computer system that execute entire operating systems. Cloud providers offer on-demand virtual machines with a selection of processor, storage, networking, and operating system configurations with a variety of payment models.
**On [AWS](/aws),** you can provision virtual machines through Amazon EC2.
**On [Azure](/azure),** you can provision virtual machines through Azure Virtual Machines.
**On [Google Cloud](/gcp),** you can provision virtual machines through Google Compute Engine.
### Building and deploying virtual machines on AWS, Azure, and Google Cloud
[Infrastructure as code](/what-is/what-is-infrastructure-as-code) is an efficient and repeatable way of building a serverless application with programming languages and deploying the website to your preferred cloud.
Pulumis open source, infrastructure as code SDK that lets you provision virtual machines with TypeScript/JavaScript, Python, Go, Java, .NET, and YAML. The main benefits include:
* **Programming Languages:** Define infrastructure as code in your favorite language instead of domain-specific languages or clicking through cloud consoles.
* **Unified Function and Infrastructure Code:** Manage cloud function code and infrastructure code together in a single program.
* **Fast, Easy Deployment:** Quickly deploy your infrastructure with a CLI or from a CI/CD workflow.
* **Rapid Development:** Author, version, test, and release infrastructure changes just like software.