Last active
March 31, 2018 08:04
-
-
Save otakup0pe/6a9cb19f648deb3d863afb063944a6d9 to your computer and use it in GitHub Desktop.
AWS Credentials
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
# -*-YAML-*- | |
secrets: | |
- aws_file: "aws.yml" | |
mount: "aws" | |
region: "us-east-1" | |
roles: | |
- name: "bla" | |
arn: "arn:aws:iam::aws:policy/AdministratorAccess" |
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
$ cat .secrets/aws.yml | |
access_key_id: "REDACTED" | |
secret_access_key: "REDACTED" | |
$ vault read paas/abus/stage/aws/creds/bla | grep key | |
access_key REDACTED | |
secret_key REDACTED |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment