Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bobgroup-go-utils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bob Public Utils
bobgroup-go-utils
Commits
c2d128a2
Commit
c2d128a2
authored
2 years ago
by
James Page
Browse files
Options
Downloads
Patches
Plain Diff
#31
Fixing secret key name for S3 user secret
parent
26e623ae
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
secrets_manager/secrets_manager.go
+3
-3
3 additions, 3 deletions
secrets_manager/secrets_manager.go
with
3 additions
and
3 deletions
secrets_manager/secrets_manager.go
+
3
−
3
View file @
c2d128a2
...
@@ -27,7 +27,7 @@ type DatabaseCredentials struct {
...
@@ -27,7 +27,7 @@ type DatabaseCredentials struct {
type
S3UploadCredentials
struct
{
type
S3UploadCredentials
struct
{
AccessKeyID
string
`json:"accessKeyID"`
AccessKeyID
string
`json:"accessKeyID"`
Secret
Access
Key
string
`json:"secret
Access
Key"`
SecretKey
string
`json:"secretKey"`
}
}
var
(
var
(
...
@@ -52,7 +52,7 @@ func GetS3UploadCredentials(secretID string, isDebug bool) (*credentials2.Creden
...
@@ -52,7 +52,7 @@ func GetS3UploadCredentials(secretID string, isDebug bool) (*credentials2.Creden
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
err
return
nil
,
err
}
}
return
credentials2
.
NewStaticCredentials
(
credentials
.
AccessKeyID
,
credentials
.
Secret
Access
Key
,
""
),
nil
return
credentials2
.
NewStaticCredentials
(
credentials
.
AccessKeyID
,
credentials
.
SecretKey
,
""
),
nil
}
}
func
GetSecret
(
secretID
string
,
isDebug
bool
)
(
string
,
string
)
{
func
GetSecret
(
secretID
string
,
isDebug
bool
)
(
string
,
string
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment