Skip to content

Commit

Permalink
Merge pull request #3 from lornest/final-test
Browse files Browse the repository at this point in the history
period to test codegen PR
  • Loading branch information
lornest authored Oct 21, 2024
2 parents 0636717 + cf7b3ae commit 79af100
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tfplugindocs-generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.head_ref }}
message: "[bot][skip ci] docs: tfplugindocs generate"
message: "[bot] docs: tfplugindocs generate"
2 changes: 1 addition & 1 deletion docs/resources/permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ resource "sonarqube_permissions" "john_project_read" {
### Optional

- `group_name` (String) The name of the Group that should get the specified permissions. Changing this forces a new resource to be created. Cannot be used with `login_name`
- `login_name` (String) The name of the user that should get the specified permissions. Changing this forces a new resource to be created. Cannot be used with `group_name`
- `login_name` (String) The name of the user that should get the specified permissions. Changing this forces a new resource to be created. Cannot be used with `group_name`.
- `project_key` (String) Specify if you want to apply project level permissions. Changing this forces a new resource to be created. Cannot be used with `template_id & template_name`
- `template_id` (String) Specify if you want to apply the permissions to a permission template. Changing this forces a new resource to be created. Cannot be used with `project_key & template_name`
- `template_name` (String) Specify if you want to apply the permissions to a permission template. Changing this forces a new resource to be created. Cannot be used with `project_key & template_id`
Expand Down
2 changes: 1 addition & 1 deletion sonarqube/resource_sonarqube_permissions.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func resourceSonarqubePermissions() *schema.Resource {
Optional: true,
ForceNew: true,
ExactlyOneOf: []string{"login_name", "group_name"},
Description: "The name of the user that should get the specified permissions. Changing this forces a new resource to be created. Cannot be used with `group_name`",
Description: "The name of the user that should get the specified permissions. Changing this forces a new resource to be created. Cannot be used with `group_name`.",
},
"group_name": {
Type: schema.TypeString,
Expand Down

0 comments on commit 79af100

Please sign in to comment.