Skip to content

Commit

Permalink
make the provider valid
Browse files Browse the repository at this point in the history
  • Loading branch information
VenelinMartinov committed Mar 20, 2024
1 parent 969cd64 commit 2514376
Show file tree
Hide file tree
Showing 56 changed files with 12,659 additions and 520 deletions.
56 changes: 0 additions & 56 deletions README-PROVIDER.md

This file was deleted.

459 changes: 28 additions & 431 deletions README.md

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions examples/basic/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/bin/
/node_modules/
7 changes: 7 additions & 0 deletions examples/basic/Pulumi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: basic
runtime: nodejs
description: A minimal TypeScript Pulumi program
config:
pulumi:tags:
value:
pulumi:template: typescript
6 changes: 6 additions & 0 deletions examples/basic/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import * as pulumi from "@pulumi/pulumi";
import * as xyz from "@pulumi/xyz";

const resource = new xyz.Resource("Resource", { sampleAttribute: "attr" });

export const sampleAttribute = resource.sampleAttribute;
Loading

0 comments on commit 2514376

Please sign in to comment.