Skip to content

Commit

Permalink
Update documentation for project varset permission
Browse files Browse the repository at this point in the history
  • Loading branch information
mkam committed Jan 16, 2025
1 parent 2a5db11 commit c2858f9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions website/docs/r/team_project_access.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ The following permissions apply to the project itself.
|---------------------|---------------------------------------------|
| `settings` | The permission to grant for the project's settings. Default: `read`. Valid strings: `read`, `update`, or `delete` |
| `teams` | The permission to grant for the project's teams. Default: `none`, Valid strings: `none`, `read`, or `manage` |
| `variable_sets` | The permission to grant for the project's variable sets. Default: `none`, Valid strings: `none`, `read`, or `write` |

</n>
</n>
Expand Down Expand Up @@ -89,8 +90,9 @@ resource "tfe_team_project_access" "custom" {
project_id = tfe_project.test.id
project_access {
settings = "read"
teams = "none"
settings = "read"
teams = "none"
variable_sets = "write"
}
workspace_access {
state_versions = "write"
Expand Down

0 comments on commit c2858f9

Please sign in to comment.