Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/saniales/pulumi-blueprints-ts

A collection of Pulumi blueprints in Typescript
https://github.com/saniales/pulumi-blueprints-ts

Last synced: about 17 hours ago
JSON representation

A collection of Pulumi blueprints in Typescript

Awesome Lists containing this project

README

        

# pulumi-blueprints-ts

A collection of Pulumi blueprints in Typescript

## Usage

``` bash
npm install @saniales/pulumi-blueprints-ts
```

and then in your pulumi script

``` Typescript
import * as pulumi from "@pulumi/pulumi";

import { AWSNetwork } from "@saniales/pulumi-blueprints-ts/infra/networking/aws";

const awsNetwork = new AWSNetwork("test-network", {
region: "eu-central-1",
vpc: {
cidrBlock: "10.0.0.0/16",
enableDnsHostnames: true,
enableDnsSupport: true,
}
});

// ...
```