-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sergey Novikov
committed
Jun 6, 2019
1 parent
2527a48
commit 702e07d
Showing
10 changed files
with
378 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
azure.auth | ||
bin | ||
coverage.txt | ||
main | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
FROM amazonlinux:2 | ||
|
||
COPY ./bin/exec-with-secrets-linux-amd64 /usr/local/bin/exec-with-secrets | ||
ADD https://github.com/s12v/exec-with-secrets/releases/download/v0.3.0/exec-with-secrets-linux-amd64 /exec-with-secrets | ||
|
||
CMD exec-with-secrets | ||
RUN chmod +x /exec-with-secrets | ||
|
||
ENTRYPOINT ["/exec-with-secrets"] | ||
|
||
CMD env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
module github.com/s12v/exec-with-secrets | ||
|
||
require github.com/aws/aws-sdk-go-v2 v0.8.0 | ||
|
||
require ( | ||
github.com/Azure/azure-sdk-for-go v30.0.0+incompatible | ||
github.com/Azure/go-autorest/autorest v0.2.0 | ||
github.com/Azure/go-autorest/autorest/azure/auth v0.1.0 // indirect | ||
github.com/Azure/go-autorest/autorest/to v0.2.0 // indirect | ||
github.com/Azure/go-autorest/autorest/validation v0.1.0 // indirect | ||
) |
Oops, something went wrong.