Skip to content

Commit

Permalink
feature - Adding new version site roles
Browse files Browse the repository at this point in the history
  • Loading branch information
GtheSheep authored Sep 14, 2023
2 parents 7d57983 + a4fab70 commit c48e68f
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/resources/group.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,10 @@ description: |-
- `id` (String) The ID of this resource.
- `last_updated` (String)

## Import

Import is supported using the following syntax:

```shell
terraform import tableau_group.example "group_id"
```
7 changes: 7 additions & 0 deletions docs/resources/group_user.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,10 @@ description: |-
- `last_updated` (String)


## Import

Import is supported using the following syntax:

```shell
terraform import group_user.example "group_id:user_id"
```
6 changes: 6 additions & 0 deletions docs/resources/project.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,10 @@ description: |-
- `id` (String) The ID of this resource.
- `last_updated` (String)

## Import

Import is supported using the following syntax:

```shell
terraform import tableau_project.example "project_id"
```
6 changes: 6 additions & 0 deletions docs/resources/user.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,10 @@ description: |-
- `id` (String) The ID of this resource.
- `last_updated` (String)

## Import

Import is supported using the following syntax:

```shell
terraform import tableau_user.example "user_id"
```
3 changes: 3 additions & 0 deletions tableau/group_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ func (r *groupResource) Schema(_ context.Context, _ resource.SchemaRequest, resp
stringvalidator.OneOf([]string{
"Creator",
"Explorer",
"Interactor",
"Publisher",
"ExplorerCanPublish",
"ServerAdministrator",
"SiteAdministratorExplorer",
"SiteAdministratorCreator",
"Unlicensed",
Expand Down
3 changes: 3 additions & 0 deletions tableau/user_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ func (r *userResource) Schema(_ context.Context, _ resource.SchemaRequest, resp
stringvalidator.OneOf([]string{
"Creator",
"Explorer",
"Interactor",
"Publisher",
"ExplorerCanPublish",
"ServerAdministrator",
"SiteAdministratorExplorer",
"SiteAdministratorCreator",
"Unlicensed",
Expand Down

0 comments on commit c48e68f

Please sign in to comment.