https://github.com/saniales/pulumi-blueprints-ts
A collection of Pulumi blueprints in Typescript
https://github.com/saniales/pulumi-blueprints-ts
Last synced: about 2 months ago
JSON representation
A collection of Pulumi blueprints in Typescript
- Host: GitHub
- URL: https://github.com/saniales/pulumi-blueprints-ts
- Owner: saniales
- License: gpl-3.0
- Created: 2024-07-26T15:18:25.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-10-29T14:22:48.000Z (8 months ago)
- Last Synced: 2025-05-04T04:57:26.448Z (2 months ago)
- Language: TypeScript
- Size: 199 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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,
}
});// ...
```