Defined the key and secret via ENV vars

This commit is contained in:
Tri Tran
2017-10-28 19:29:37 +07:00
parent bf862a97fe
commit f9951a3d21
2 changed files with 6 additions and 2 deletions
@@ -6,5 +6,5 @@ aws:
version: latest
region: us-east-1
credentials:
key: not-a-real-key
secret: "@@not-a-real-secret"
key: "%env(AWS_CREDENTIAL_KEY)%"
secret: "%env(AWS_CREDENTIAL_SECRET)%"
@@ -4,5 +4,9 @@
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"AWS_CREDENTIAL_KEY": "not-a-real-key",
"AWS_CREDENTIAL_SECRET": "@@not-a-real-secret"
}
}