mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
fixed environment variable names
This commit is contained in:
parent
349c193131
commit
16c0d81290
1 changed files with 2 additions and 2 deletions
|
@ -21,8 +21,8 @@ import (
|
|||
)
|
||||
|
||||
// Requires a token to be set in environment variable
|
||||
var GITLAB_TOKEN = os.Getenv("GITLABTOKEN")
|
||||
var GITLAB_PROJECT_ID = os.Getenv("GITLABPROJECTID")
|
||||
var GITLAB_TOKEN = os.Getenv("GITLAB_TOKEN")
|
||||
var GITLAB_PROJECT_ID = os.Getenv("GITLAB_PROJECT_ID")
|
||||
|
||||
type GitlabCredentials struct {
|
||||
Token string `json:"token"`
|
||||
|
|
Loading…
Reference in a new issue