Skip to content

Commit

Permalink
removed credentials from example (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
chandra1-n authored Jan 11, 2024
1 parent db6167a commit 38e57d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/service/organization/user/create/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ func main() {

// Create a new group.
out, err := svc.CreateUser(ctx, &organization.User{
Email: spotinst.String("[email protected]"),
Email: spotinst.String("your-username"),
FirstName: spotinst.String("test"),
LastName: spotinst.String("user"),
Password: spotinst.String("testUser@123"),
Password: spotinst.String("your-password"),
Role: spotinst.String("viewer"),
}, spotinst.Bool(true))

Expand Down
2 changes: 1 addition & 1 deletion examples/service/stateful/providers/azure/create/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func main() {
Tags: []*azure.Tag{
{
TagKey: spotinst.String("Creator"),
TagValue: spotinst.String("[email protected]"),
TagValue: spotinst.String("Terraform-Example"),
},
},
UserData: spotinst.String("base64 user data script"),
Expand Down

0 comments on commit 38e57d8

Please sign in to comment.