---
title: "AWS Resources"
description: "A Pulumi program that demonstrates creating various AWS resources in Python"
url: "https://www.pulumi.com/dev/examples/aws-py-resources/"
image: "https://www.pulumi.com/assets/og/dev/examples/aws-py-resources.png"
---

# AWS Resources

A Pulumi program that demonstrates creating various AWS resources in Python

- Source on GitHub: https://github.com/pulumi/examples/tree/master/aws-py-resources
- Deploy with Pulumi: https://app.pulumi.com/new?template=https%3A%2F%2Fgithub.com%2Fpulumi%2Fexamples%2Ftree%2Fmaster%2Faws-py-resources

## Get started with this example

This example lives in the [pulumi/examples](https://github.com/pulumi/examples/tree/master/aws-py-resources) repo. Pull down just this directory to follow along:

```bash
git clone --filter=blob:none --sparse https://github.com/pulumi/examples pulumi-examples
git -C pulumi-examples sparse-checkout set aws-py-resources
cd pulumi-examples/aws-py-resources
```

A Pulumi program that demonstrates creating various AWS resources in Python

```bash
# Create and configure a new stack
$ pulumi stack init dev
$ pulumi config set aws:region us-east-2

# Preview and run the deployment
$ pulumi up

# Remove the app
$ pulumi destroy
$ pulumi stack rm
```
