Skip to content

Commit 0322d78

Browse files
authored
Merge pull request #979 from gitlabhq/dependabot/go_modules/tools/github.com/hashicorp/terraform-plugin-docs-0.7.0
build(deps): bump github.com/hashicorp/terraform-plugin-docs from 0.6.0 to 0.7.0 in /tools
2 parents 8b220dd + 09f268c commit 0322d78

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+1141
-1139
lines changed

docs/data-sources/branch.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -34,39 +34,39 @@ data "gitlab_branch" "foo" {
3434

3535
### Required
3636

37-
- **name** (String) The name of the branch.
38-
- **project** (String) The full path or id of the project.
37+
- `name` (String) The name of the branch.
38+
- `project` (String) The full path or id of the project.
3939

4040
### Optional
4141

42-
- **id** (String) The ID of this resource.
42+
- `id` (String) The ID of this resource.
4343

4444
### Read-Only
4545

46-
- **can_push** (Boolean) Bool, true if you can push to the branch.
47-
- **commit** (Set of Object) The commit associated with the branch ref. (see [below for nested schema](#nestedatt--commit))
48-
- **default** (Boolean) Bool, true if branch is the default branch for the project.
49-
- **developer_can_merge** (Boolean) Bool, true if developer level access allows to merge branch.
50-
- **developer_can_push** (Boolean) Bool, true if developer level access allows git push.
51-
- **merged** (Boolean) Bool, true if the branch has been merged into it's parent.
52-
- **protected** (Boolean) Bool, true if branch has branch protection.
53-
- **web_url** (String) The url of the created branch (https.)
46+
- `can_push` (Boolean) Bool, true if you can push to the branch.
47+
- `commit` (Set of Object) The commit associated with the branch ref. (see [below for nested schema](#nestedatt--commit))
48+
- `default` (Boolean) Bool, true if branch is the default branch for the project.
49+
- `developer_can_merge` (Boolean) Bool, true if developer level access allows to merge branch.
50+
- `developer_can_push` (Boolean) Bool, true if developer level access allows git push.
51+
- `merged` (Boolean) Bool, true if the branch has been merged into it's parent.
52+
- `protected` (Boolean) Bool, true if branch has branch protection.
53+
- `web_url` (String) The url of the created branch (https.)
5454

5555
<a id="nestedatt--commit"></a>
5656
### Nested Schema for `commit`
5757

5858
Read-Only:
5959

60-
- **author_email** (String)
61-
- **author_name** (String)
62-
- **authored_date** (String)
63-
- **committed_date** (String)
64-
- **committer_email** (String)
65-
- **committer_name** (String)
66-
- **id** (String)
67-
- **message** (String)
68-
- **parent_ids** (Set of String)
69-
- **short_id** (String)
70-
- **title** (String)
60+
- `author_email` (String)
61+
- `author_name` (String)
62+
- `authored_date` (String)
63+
- `committed_date` (String)
64+
- `committer_email` (String)
65+
- `committer_name` (String)
66+
- `id` (String)
67+
- `message` (String)
68+
- `parent_ids` (Set of String)
69+
- `short_id` (String)
70+
- `title` (String)
7171

7272

docs/data-sources/group.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -32,23 +32,23 @@ data "gitlab_group" "foo" {
3232

3333
### Optional
3434

35-
- **full_path** (String) The full path of the group.
36-
- **group_id** (Number) The ID of the group.
37-
- **id** (String) The ID of this resource.
35+
- `full_path` (String) The full path of the group.
36+
- `group_id` (Number) The ID of the group.
37+
- `id` (String) The ID of this resource.
3838

3939
### Read-Only
4040

41-
- **default_branch_protection** (Number) Whether developers and maintainers can push to the applicable default branch.
42-
- **description** (String) The description of the group.
43-
- **full_name** (String) The full name of the group.
44-
- **lfs_enabled** (Boolean) Boolean, is LFS enabled for projects in this group.
45-
- **name** (String) The name of this group.
46-
- **parent_id** (Number) Integer, ID of the parent group.
47-
- **path** (String) The path of the group.
48-
- **prevent_forking_outside_group** (Boolean) When enabled, users can not fork projects from this group to external namespaces.
49-
- **request_access_enabled** (Boolean) Boolean, is request for access enabled to the group.
50-
- **runners_token** (String, Sensitive) The group level registration token to use during runner setup.
51-
- **visibility_level** (String) Visibility level of the group. Possible values are `private`, `internal`, `public`.
52-
- **web_url** (String) Web URL of the group.
41+
- `default_branch_protection` (Number) Whether developers and maintainers can push to the applicable default branch.
42+
- `description` (String) The description of the group.
43+
- `full_name` (String) The full name of the group.
44+
- `lfs_enabled` (Boolean) Boolean, is LFS enabled for projects in this group.
45+
- `name` (String) The name of this group.
46+
- `parent_id` (Number) Integer, ID of the parent group.
47+
- `path` (String) The path of the group.
48+
- `prevent_forking_outside_group` (Boolean) When enabled, users can not fork projects from this group to external namespaces.
49+
- `request_access_enabled` (Boolean) Boolean, is request for access enabled to the group.
50+
- `runners_token` (String, Sensitive) The group level registration token to use during runner setup.
51+
- `visibility_level` (String) Visibility level of the group. Possible values are `private`, `internal`, `public`.
52+
- `web_url` (String) Web URL of the group.
5353

5454

docs/data-sources/group_membership.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,27 +32,27 @@ data "gitlab_group_membership" "example" {
3232

3333
### Optional
3434

35-
- **access_level** (String) Only return members with the desired access level. Acceptable values are: `guest`, `reporter`, `developer`, `maintainer`, `owner`.
36-
- **full_path** (String) The full path of the group.
37-
- **group_id** (Number) The ID of the group.
38-
- **id** (String) The ID of this resource.
35+
- `access_level` (String) Only return members with the desired access level. Acceptable values are: `guest`, `reporter`, `developer`, `maintainer`, `owner`.
36+
- `full_path` (String) The full path of the group.
37+
- `group_id` (Number) The ID of the group.
38+
- `id` (String) The ID of this resource.
3939

4040
### Read-Only
4141

42-
- **members** (List of Object) The list of group members. (see [below for nested schema](#nestedatt--members))
42+
- `members` (List of Object) The list of group members. (see [below for nested schema](#nestedatt--members))
4343

4444
<a id="nestedatt--members"></a>
4545
### Nested Schema for `members`
4646

4747
Read-Only:
4848

49-
- **access_level** (String)
50-
- **avatar_url** (String)
51-
- **expires_at** (String)
52-
- **id** (Number)
53-
- **name** (String)
54-
- **state** (String)
55-
- **username** (String)
56-
- **web_url** (String)
49+
- `access_level` (String)
50+
- `avatar_url` (String)
51+
- `expires_at` (String)
52+
- `id` (Number)
53+
- `name` (String)
54+
- `state` (String)
55+
- `username` (String)
56+
- `web_url` (String)
5757

5858

docs/data-sources/instance_deploy_keys.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -32,36 +32,36 @@ data "gitlab_instance_deploy_keys" "example" {
3232

3333
### Optional
3434

35-
- **id** (String) The ID of this resource.
36-
- **public** (Boolean) Only return deploy keys that are public.
35+
- `id` (String) The ID of this resource.
36+
- `public` (Boolean) Only return deploy keys that are public.
3737

3838
### Read-Only
3939

40-
- **deploy_keys** (List of Object) The list of all deploy keys across all projects of the GitLab instance. (see [below for nested schema](#nestedatt--deploy_keys))
40+
- `deploy_keys` (List of Object) The list of all deploy keys across all projects of the GitLab instance. (see [below for nested schema](#nestedatt--deploy_keys))
4141

4242
<a id="nestedatt--deploy_keys"></a>
4343
### Nested Schema for `deploy_keys`
4444

4545
Read-Only:
4646

47-
- **created_at** (String)
48-
- **fingerprint** (String)
49-
- **id** (Number)
50-
- **key** (String)
51-
- **projects_with_write_access** (List of Object) (see [below for nested schema](#nestedobjatt--deploy_keys--projects_with_write_access))
52-
- **title** (String)
47+
- `created_at` (String)
48+
- `fingerprint` (String)
49+
- `id` (Number)
50+
- `key` (String)
51+
- `projects_with_write_access` (List of Object) (see [below for nested schema](#nestedobjatt--deploy_keys--projects_with_write_access))
52+
- `title` (String)
5353

5454
<a id="nestedobjatt--deploy_keys--projects_with_write_access"></a>
5555
### Nested Schema for `deploy_keys.projects_with_write_access`
5656

5757
Read-Only:
5858

59-
- **created_at** (String)
60-
- **description** (String)
61-
- **id** (Number)
62-
- **name** (String)
63-
- **name_with_namespace** (String)
64-
- **path** (String)
65-
- **path_with_namespace** (String)
59+
- `created_at` (String)
60+
- `description` (String)
61+
- `id` (Number)
62+
- `name` (String)
63+
- `name_with_namespace` (String)
64+
- `path` (String)
65+
- `path_with_namespace` (String)
6666

6767

docs/data-sources/project.md

Lines changed: 70 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -30,91 +30,91 @@ data "gitlab_project" "example" {
3030

3131
### Optional
3232

33-
- **id** (String) The integer or path with namespace that uniquely identifies the project within the gitlab install.
34-
- **path_with_namespace** (String) The path of the repository with namespace.
35-
- **public_builds** (Boolean) If true, jobs can be viewed by non-project members.
33+
- `id` (String) The integer or path with namespace that uniquely identifies the project within the gitlab install.
34+
- `path_with_namespace` (String) The path of the repository with namespace.
35+
- `public_builds` (Boolean) If true, jobs can be viewed by non-project members.
3636

3737
### Read-Only
3838

39-
- **analytics_access_level** (String) Set the analytics access level. Valid values are `disabled`, `private`, `enabled`.
40-
- **archived** (Boolean) Whether the project is in read-only mode (archived).
41-
- **auto_cancel_pending_pipelines** (String) Auto-cancel pending pipelines. This isn’t a boolean, but enabled/disabled.
42-
- **auto_devops_deploy_strategy** (String) Auto Deploy strategy. Valid values are `continuous`, `manual`, `timed_incremental`.
43-
- **auto_devops_enabled** (Boolean) Enable Auto DevOps for this project.
44-
- **autoclose_referenced_issues** (Boolean) Set whether auto-closing referenced issues on default branch.
45-
- **build_git_strategy** (String) The Git strategy. Defaults to fetch.
46-
- **build_timeout** (Number) The maximum amount of time, in seconds, that a job can run.
47-
- **builds_access_level** (String) Set the builds access level. Valid values are `disabled`, `private`, `enabled`.
48-
- **container_expiration_policy** (List of Object) Set the image cleanup policy for this project. **Note**: this field is sometimes named `container_expiration_policy_attributes` in the GitLab Upstream API. (see [below for nested schema](#nestedatt--container_expiration_policy))
49-
- **container_registry_access_level** (String) Set visibility of container registry, for this project. Valid values are `disabled`, `private`, `enabled`.
50-
- **default_branch** (String) The default branch for the project.
51-
- **description** (String) A description of the project.
52-
- **emails_disabled** (Boolean) Disable email notifications.
53-
- **external_authorization_classification_label** (String) The classification label for the project.
54-
- **forking_access_level** (String) Set the forking access level. Valid values are `disabled`, `private`, `enabled`.
55-
- **http_url_to_repo** (String) URL that can be provided to `git clone` to clone the
56-
- **issues_access_level** (String) Set the issues access level. Valid values are `disabled`, `private`, `enabled`.
57-
- **issues_enabled** (Boolean) Enable issue tracking for the project.
58-
- **lfs_enabled** (Boolean) Enable LFS for the project.
59-
- **merge_commit_template** (String) Template used to create merge commit message in merge requests. (Introduced in GitLab 14.5.)
60-
- **merge_pipelines_enabled** (Boolean) Enable or disable merge pipelines.
61-
- **merge_requests_access_level** (String) Set the merge requests access level. Valid values are `disabled`, `private`, `enabled`.
62-
- **merge_requests_enabled** (Boolean) Enable merge requests for the project.
63-
- **merge_trains_enabled** (Boolean) Enable or disable merge trains.
64-
- **name** (String) The name of the project.
65-
- **namespace_id** (Number) The namespace (group or user) of the project. Defaults to your user.
66-
- **operations_access_level** (String) Set the operations access level. Valid values are `disabled`, `private`, `enabled`.
67-
- **path** (String) The path of the repository.
68-
- **pipelines_enabled** (Boolean) Enable pipelines for the project.
69-
- **printing_merge_request_link_enabled** (Boolean) Show link to create/view merge request when pushing from the command line
70-
- **push_rules** (List of Object) Push rules for the project. (see [below for nested schema](#nestedatt--push_rules))
71-
- **remove_source_branch_after_merge** (Boolean) Enable `Delete source branch` option by default for all new merge requests
72-
- **repository_access_level** (String) Set the repository access level. Valid values are `disabled`, `private`, `enabled`.
73-
- **repository_storage** (String) Which storage shard the repository is on. (administrator only)
74-
- **request_access_enabled** (Boolean) Allow users to request member access.
75-
- **requirements_access_level** (String) Set the requirements access level. Valid values are `disabled`, `private`, `enabled`.
76-
- **resolve_outdated_diff_discussions** (Boolean) Automatically resolve merge request diffs discussions on lines changed with a push.
77-
- **runners_token** (String) Registration token to use during runner setup.
78-
- **security_and_compliance_access_level** (String) Set the security and compliance access level. Valid values are `disabled`, `private`, `enabled`.
79-
- **snippets_access_level** (String) Set the snippets access level. Valid values are `disabled`, `private`, `enabled`.
80-
- **snippets_enabled** (Boolean) Enable snippets for the project.
81-
- **squash_commit_template** (String) Template used to create squash commit message in merge requests. (Introduced in GitLab 14.6.)
82-
- **ssh_url_to_repo** (String) URL that can be provided to `git clone` to clone the
83-
- **topics** (Set of String) The list of topics for the project.
84-
- **visibility_level** (String) Repositories are created as private by default.
85-
- **web_url** (String) URL that can be used to find the project in a browser.
86-
- **wiki_access_level** (String) Set the wiki access level. Valid values are `disabled`, `private`, `enabled`.
87-
- **wiki_enabled** (Boolean) Enable wiki for the project.
39+
- `analytics_access_level` (String) Set the analytics access level. Valid values are `disabled`, `private`, `enabled`.
40+
- `archived` (Boolean) Whether the project is in read-only mode (archived).
41+
- `auto_cancel_pending_pipelines` (String) Auto-cancel pending pipelines. This isn’t a boolean, but enabled/disabled.
42+
- `auto_devops_deploy_strategy` (String) Auto Deploy strategy. Valid values are `continuous`, `manual`, `timed_incremental`.
43+
- `auto_devops_enabled` (Boolean) Enable Auto DevOps for this project.
44+
- `autoclose_referenced_issues` (Boolean) Set whether auto-closing referenced issues on default branch.
45+
- `build_git_strategy` (String) The Git strategy. Defaults to fetch.
46+
- `build_timeout` (Number) The maximum amount of time, in seconds, that a job can run.
47+
- `builds_access_level` (String) Set the builds access level. Valid values are `disabled`, `private`, `enabled`.
48+
- `container_expiration_policy` (List of Object) Set the image cleanup policy for this project. **Note**: this field is sometimes named `container_expiration_policy_attributes` in the GitLab Upstream API. (see [below for nested schema](#nestedatt--container_expiration_policy))
49+
- `container_registry_access_level` (String) Set visibility of container registry, for this project. Valid values are `disabled`, `private`, `enabled`.
50+
- `default_branch` (String) The default branch for the project.
51+
- `description` (String) A description of the project.
52+
- `emails_disabled` (Boolean) Disable email notifications.
53+
- `external_authorization_classification_label` (String) The classification label for the project.
54+
- `forking_access_level` (String) Set the forking access level. Valid values are `disabled`, `private`, `enabled`.
55+
- `http_url_to_repo` (String) URL that can be provided to `git clone` to clone the
56+
- `issues_access_level` (String) Set the issues access level. Valid values are `disabled`, `private`, `enabled`.
57+
- `issues_enabled` (Boolean) Enable issue tracking for the project.
58+
- `lfs_enabled` (Boolean) Enable LFS for the project.
59+
- `merge_commit_template` (String) Template used to create merge commit message in merge requests. (Introduced in GitLab 14.5.)
60+
- `merge_pipelines_enabled` (Boolean) Enable or disable merge pipelines.
61+
- `merge_requests_access_level` (String) Set the merge requests access level. Valid values are `disabled`, `private`, `enabled`.
62+
- `merge_requests_enabled` (Boolean) Enable merge requests for the project.
63+
- `merge_trains_enabled` (Boolean) Enable or disable merge trains.
64+
- `name` (String) The name of the project.
65+
- `namespace_id` (Number) The namespace (group or user) of the project. Defaults to your user.
66+
- `operations_access_level` (String) Set the operations access level. Valid values are `disabled`, `private`, `enabled`.
67+
- `path` (String) The path of the repository.
68+
- `pipelines_enabled` (Boolean) Enable pipelines for the project.
69+
- `printing_merge_request_link_enabled` (Boolean) Show link to create/view merge request when pushing from the command line
70+
- `push_rules` (List of Object) Push rules for the project. (see [below for nested schema](#nestedatt--push_rules))
71+
- `remove_source_branch_after_merge` (Boolean) Enable `Delete source branch` option by default for all new merge requests
72+
- `repository_access_level` (String) Set the repository access level. Valid values are `disabled`, `private`, `enabled`.
73+
- `repository_storage` (String) Which storage shard the repository is on. (administrator only)
74+
- `request_access_enabled` (Boolean) Allow users to request member access.
75+
- `requirements_access_level` (String) Set the requirements access level. Valid values are `disabled`, `private`, `enabled`.
76+
- `resolve_outdated_diff_discussions` (Boolean) Automatically resolve merge request diffs discussions on lines changed with a push.
77+
- `runners_token` (String) Registration token to use during runner setup.
78+
- `security_and_compliance_access_level` (String) Set the security and compliance access level. Valid values are `disabled`, `private`, `enabled`.
79+
- `snippets_access_level` (String) Set the snippets access level. Valid values are `disabled`, `private`, `enabled`.
80+
- `snippets_enabled` (Boolean) Enable snippets for the project.
81+
- `squash_commit_template` (String) Template used to create squash commit message in merge requests. (Introduced in GitLab 14.6.)
82+
- `ssh_url_to_repo` (String) URL that can be provided to `git clone` to clone the
83+
- `topics` (Set of String) The list of topics for the project.
84+
- `visibility_level` (String) Repositories are created as private by default.
85+
- `web_url` (String) URL that can be used to find the project in a browser.
86+
- `wiki_access_level` (String) Set the wiki access level. Valid values are `disabled`, `private`, `enabled`.
87+
- `wiki_enabled` (Boolean) Enable wiki for the project.
8888

8989
<a id="nestedatt--container_expiration_policy"></a>
9090
### Nested Schema for `container_expiration_policy`
9191

9292
Read-Only:
9393

94-
- **cadence** (String)
95-
- **enabled** (Boolean)
96-
- **keep_n** (Number)
97-
- **name_regex_delete** (String)
98-
- **name_regex_keep** (String)
99-
- **next_run_at** (String)
100-
- **older_than** (String)
94+
- `cadence` (String)
95+
- `enabled` (Boolean)
96+
- `keep_n` (Number)
97+
- `name_regex_delete` (String)
98+
- `name_regex_keep` (String)
99+
- `next_run_at` (String)
100+
- `older_than` (String)
101101

102102

103103
<a id="nestedatt--push_rules"></a>
104104
### Nested Schema for `push_rules`
105105

106106
Read-Only:
107107

108-
- **author_email_regex** (String)
109-
- **branch_name_regex** (String)
110-
- **commit_committer_check** (Boolean)
111-
- **commit_message_negative_regex** (String)
112-
- **commit_message_regex** (String)
113-
- **deny_delete_tag** (Boolean)
114-
- **file_name_regex** (String)
115-
- **max_file_size** (Number)
116-
- **member_check** (Boolean)
117-
- **prevent_secrets** (Boolean)
118-
- **reject_unsigned_commits** (Boolean)
108+
- `author_email_regex` (String)
109+
- `branch_name_regex` (String)
110+
- `commit_committer_check` (Boolean)
111+
- `commit_message_negative_regex` (String)
112+
- `commit_message_regex` (String)
113+
- `deny_delete_tag` (Boolean)
114+
- `file_name_regex` (String)
115+
- `max_file_size` (Number)
116+
- `member_check` (Boolean)
117+
- `prevent_secrets` (Boolean)
118+
- `reject_unsigned_commits` (Boolean)
119119

120120

0 commit comments

Comments
 (0)