Skip to content

Commit f7332b1

Browse files
authored
Merge pull request #78 from jorcau/update_go-gitlab_vendor
Upgrade go-gitlab vendor to v0.14.0
2 parents facacb5 + 2ea6ecd commit f7332b1

Some content is hidden

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

42 files changed

+3630
-392
lines changed

gitlab/resource_gitlab_group_variable.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"log"
55

66
"github.com/hashicorp/terraform/helper/schema"
7-
"github.com/xanzy/go-gitlab"
7+
gitlab "github.com/xanzy/go-gitlab"
88
)
99

1010
func resourceGitlabGroupVariable() *schema.Resource {
@@ -105,7 +105,6 @@ func resourceGitlabGroupVariableUpdate(d *schema.ResourceData, meta interface{})
105105
protected := d.Get("protected").(bool)
106106

107107
options := &gitlab.UpdateVariableOptions{
108-
Key: &key,
109108
Value: &value,
110109
Protected: &protected,
111110
EnvironmentScope: nil,

gitlab/resource_gitlab_project_variable.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"log"
55

66
"github.com/hashicorp/terraform/helper/schema"
7-
"github.com/xanzy/go-gitlab"
7+
gitlab "github.com/xanzy/go-gitlab"
88
)
99

1010
func resourceGitlabProjectVariable() *schema.Resource {
@@ -105,7 +105,6 @@ func resourceGitlabProjectVariableUpdate(d *schema.ResourceData, meta interface{
105105
protected := d.Get("protected").(bool)
106106

107107
options := &gitlab.UpdateVariableOptions{
108-
Key: &key,
109108
Value: &value,
110109
Protected: &protected,
111110
EnvironmentScope: nil,

vendor/github.com/xanzy/go-gitlab/README.md

Lines changed: 11 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/xanzy/go-gitlab/access_requests.go

Lines changed: 237 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/xanzy/go-gitlab/boards.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)