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

https://github.com/samedwardes/pulumi-databases


https://github.com/samedwardes/pulumi-databases

Last synced: over 1 year ago
JSON representation

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
```