-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add label policies icon, logo and font with addition instance_me…
…mber fix: add label policies icon, logo and font with addition instance_member
- Loading branch information
Showing
21 changed files
with
678 additions
and
317 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
page_title: "zitadel_instance_member Resource - terraform-provider-zitadel" | ||
subcategory: "" | ||
description: |- | ||
Resource representing the membership of a user on an instance, defined with the given role. | ||
--- | ||
|
||
# zitadel_instance_member (Resource) | ||
|
||
Resource representing the membership of a user on an instance, defined with the given role. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource zitadel_instance_member instance_member { | ||
depends_on = [zitadel_human_user.human_user] | ||
user_id = zitadel_human_user.human_user.id | ||
roles = ["IAM_OWNER"] | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `roles` (Set of String) List of roles granted | ||
- `user_id` (String) ID of the user | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. |
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,6 @@ | ||
resource zitadel_instance_member instance_member { | ||
depends_on = [zitadel_human_user.human_user] | ||
|
||
user_id = zitadel_human_user.human_user.id | ||
roles = ["IAM_OWNER"] | ||
} |
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
Oops, something went wrong.