Last active
February 10, 2017 03:23
-
-
Save otakup0pe/7981c202964e0bab4f11c609b1e5ae2e to your computer and use it in GitHub Desktop.
aomi extractions
This file contains hidden or 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
$ aomi extract_file foo/bar/secret /tmp/garbage | |
$ cat /tmp/garbage | |
ayyyyy | |
$ aomi environment foo/bar | |
FOO_BAR_SECRET=ayyyyy | |
$ aomi environment foo/bar --no-merge-paths | |
SECRET=ayyyyyy | |
$ aomi environment foo/bar --key-map secret=not_secret \ | |
--no-merge-paths | |
NOT_SECRET=ayyyyy | |
$ aomi aws_environment awsfoo/creds/test --lease 7200s --export | |
AWS_ACCESS_KEY_ID="REDACTED" | |
AWS_SECRET_ACCESS_KEY="REDACTED" | |
export AWS_ACCESS_KEY_ID | |
export AWS_SECRET_ACCESS_KEY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment