-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
19b03c8
commit fad8841
Showing
3 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "jumpcloud_group_lookup Data Source - terraform-provider-jumpcloud" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# jumpcloud_group_lookup (Data Source) | ||
|
||
|
||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "jumpcloud_group_lookup" "this" { | ||
name = "example" | ||
limit = 5 | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `name` (String) The name to filter on | ||
|
||
### Optional | ||
|
||
- `limit` (Number) The limit of results to return | ||
|
||
### Read-Only | ||
|
||
- `groups` (Attributes List) A list of Jumpcloud Groups (see [below for nested schema](#nestedatt--groups)) | ||
|
||
<a id="nestedatt--groups"></a> | ||
### Nested Schema for `groups` | ||
|
||
Read-Only: | ||
|
||
- `description` (String) | ||
- `id` (String) The ID of the Group | ||
- `members` (Set of String) The members of the Group | ||
- `name` (String) The Name of the Group | ||
- `type` (String) Types can be user_group or system_group |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
data "jumpcloud_group_lookup" "this" { | ||
name = "example" | ||
limit = 5 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters