diff --git a/.github/workflows/tfplugindocs-generate.yml b/.github/workflows/tfplugindocs-generate.yml index b2a35a3..34b8dde 100644 --- a/.github/workflows/tfplugindocs-generate.yml +++ b/.github/workflows/tfplugindocs-generate.yml @@ -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" diff --git a/docs/resources/permissions.md b/docs/resources/permissions.md index 22493f1..1f81bb8 100644 --- a/docs/resources/permissions.md +++ b/docs/resources/permissions.md @@ -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` diff --git a/sonarqube/resource_sonarqube_permissions.go b/sonarqube/resource_sonarqube_permissions.go index 457dec7..a630193 100644 --- a/sonarqube/resource_sonarqube_permissions.go +++ b/sonarqube/resource_sonarqube_permissions.go @@ -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,