Skip to content

Commit

Permalink
fix bug for user serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
ericogr committed Oct 27, 2021
1 parent 77cc49b commit 22018a8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
6 changes: 3 additions & 3 deletions provider/pkg/provider/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
)

type User struct {
Email string
Id string
Name string
Email string `pulumi:"email"`
Id string `pulumi:"id"`
Name string `pulumi:"name"`
}

type SlackUserFunction struct {
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.1-alpha.1635165860+3a428576.dirty
0.0.3-alpha.1635355991+77cc49bc.dirty
8 changes: 8 additions & 0 deletions sdk/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,11 @@ $ yarn install
$ pulumi stack init test
$ pulumi up
```

# Usage

Install Plugin

```bash
pulumi plugin install resource slack 0.0.1 -f /tmp/pulumi-resource-slack-xxxxx.tar.gz
```

0 comments on commit 22018a8

Please sign in to comment.