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
- Host: GitHub
- URL: https://github.com/wwt/pulumi-templates
- Owner: wwt
- License: apache-2.0
- Created: 2019-12-15T02:37:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-08-15T21:26:03.000Z (almost 3 years ago)
- Last Synced: 2025-07-13T08:50:50.387Z (11 months ago)
- Topics: aks, aks-kubernetes-cluster, aws, azure, confluent, confluent-kafka, confluent-platform, eks, iac, infrastructure-as-code, pulumi, pulumi-templates, stack, templates
- Language: Smarty
- Homepage:
- Size: 468 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```