https://github.com/samedwardes/pulumi-databases
https://github.com/samedwardes/pulumi-databases
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/samedwardes/pulumi-databases
- Owner: SamEdwardes
- Created: 2022-11-14T19:47:17.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-14T20:31:11.000Z (over 3 years ago)
- Last Synced: 2025-02-12T17:50:04.137Z (over 1 year ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pulumi Databases
Quickly create databases in AWS. Helpful for testing.
## Usage
Select the dev stack.
```bash
pulumi stack select dev
```
Set your email address. This will be used in the AWS tags.
```bash
pulumi config set --path "aws_tags.owner" "my.name@posit.co"
```
Select which databases you want to create.
```bash
pulumi config set --path "mariadb.create" true
pulumi config set --path "postgres.create" false
```
To see and edit all possible configuration values edit [Pulumi.dev.yaml](./Pulumi.dev.yaml).
To create the database(s) run:
```bash
pulumi up
```
To delete the database(s) run:
```bash
pulumi destroy
```