Skip to content

Commit

Permalink
Merge pull request #21 from cycloidio/lo-member-example-fix
Browse files Browse the repository at this point in the history
members resource: add example
  • Loading branch information
kerak19 authored Jul 18, 2024
2 parents ce7e2e8 + e2262a6 commit d2e7a48
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion docs/resources/organization_member.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,28 @@ description: |-




## Example Usage

```terraform
resource "cycloid_organization_member" "tf_org_member" {
email = "[email protected]"
role_canonical = "organization-admin"
}
provider "cycloid" {
url = var.cycloid_api_url
jwt = var.cycloid_api_key
organization_canonical = var.cycloid_organization
}
terraform {
required_providers {
cycloid = {
source = "cycloidio/cycloid"
}
}
}
```

<!-- schema generated by tfplugindocs -->
## Schema
Expand Down

0 comments on commit d2e7a48

Please sign in to comment.