Skip to content

Commit 080f7bf

Browse files
authored
Merge pull request #1032 from timofurrer/bugfix/broken-link
resource/gitlab_instance_variable: fix broken link to API docs. Closes #1028
2 parents 67c7783 + 734ec0b commit 080f7bf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/resources/instance_variable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ page_title: "gitlab_instance_variable Resource - terraform-provider-gitlab"
44
subcategory: ""
55
description: |-
66
The gitlab_instance_variable resource allows to manage the lifecycle of an instance-level CI/CD variable.
7-
Upstream API: GitLab REST API docs https://docs.gitlab.com/ee/api/instance_level_variables.html
7+
Upstream API: GitLab REST API docs https://docs.gitlab.com/ee/api/instance_level_ci_variables.html
88
---
99

1010
# gitlab_instance_variable (Resource)
1111

1212
The `gitlab_instance_variable` resource allows to manage the lifecycle of an instance-level CI/CD variable.
1313

14-
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/ee/api/instance_level_variables.html)
14+
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/ee/api/instance_level_ci_variables.html)
1515

1616
## Example Usage
1717

internal/provider/resource_gitlab_instance_variable.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var _ = registerResource("gitlab_instance_variable", func() *schema.Resource {
1414
return &schema.Resource{
1515
Description: `The ` + "`" + `gitlab_instance_variable` + "`" + ` resource allows to manage the lifecycle of an instance-level CI/CD variable.
1616
17-
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/ee/api/instance_level_variables.html)`,
17+
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/ee/api/instance_level_ci_variables.html)`,
1818

1919
CreateContext: resourceGitlabInstanceVariableCreate,
2020
ReadContext: resourceGitlabInstanceVariableRead,

0 commit comments

Comments
 (0)