An open API service indexing awesome lists of open source software.

https://github.com/wwt/pulumi-templates

Pulumi project templates
https://github.com/wwt/pulumi-templates

aks aks-kubernetes-cluster aws azure confluent confluent-kafka confluent-platform eks iac infrastructure-as-code pulumi pulumi-templates stack templates

Last synced: about 1 month ago
JSON representation

Pulumi project templates

Awesome Lists containing this project

README

          

# Pulumi Templates

These folders hold templates that are used to create Pulumi projects. If project specific instructions are necessary, they will be located in the README for that project.

### Creating a Project

1. Make a new folder and change directory into that folder:

```sh
mkdir && cd
```

2. Instantiate a new project:

```sh
pulumi new https://github.com/wwt/pulumi-templates/folder-name
```

3. Follow the prompts to configure your deployment.
4. Run `pulumi up` to preview and deploy the stack.

### Destroying the Project

1. Run `pulumi destroy` to tear down the stack

2. Remove the stack and its history with:

```
pulumi stack rm dev
```