forked from cheelim1/terraform-provider-jumpcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
3 changed files
with
41 additions
and
10 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
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
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,35 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "jumpcloud_user_group_association Resource - terraform-provider-jumpcloud" | ||
subcategory: "" | ||
description: |- | ||
Provides a resource for associating a JumpCloud user group to objects like SSO applications. | ||
--- | ||
|
||
# Resource `jumpcloud_user_group_association` | ||
|
||
Provides a resource for associating a JumpCloud user group to objects like SSO applications. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "jumpcloud_user_group_association" "example" { | ||
type = "application" | ||
group_id = jumpcloud_user_group.example.id | ||
object_id = jumpcloud_application.example.id | ||
} | ||
``` | ||
|
||
## Schema | ||
|
||
### Required | ||
|
||
- `group_id` (String) The ID of the `resource_user_group` resource. | ||
- `object_id` (String) The ID of the object to associate to the group. | ||
- `type` (String) The type of the object to associate to the given group. Possible values: `active_directory`, `application`, `command`, `g_suite`, `ldap_server`, `office_365`, `policy`, `radius_server`, `system`, `system_group`. | ||
|
||
### Optional | ||
|
||
- `id` (String) The ID of this resource. | ||
|
||
|