Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

Commit

Permalink
Get AMI data from helm value rather than from hardcoded string in the…
Browse files Browse the repository at this point in the history
… code.
  • Loading branch information
whites11 committed Sep 11, 2023
1 parent bc908a8 commit 7d71ff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/internal/images/images_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func Test_Images_Cache(t *testing.T) {
"us-west-2": "ami-0c1654a9988866a1f"
}
}`
err := os.WriteFile("/tmp/ami.json", []byte(data), os.ModePerm)
err := os.WriteFile("/tmp/ami.json", []byte(data), os.ModePerm) // nolint:gosec
if err != nil {
panic(err)
}
Expand Down

0 comments on commit 7d71ff3

Please sign in to comment.