mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-14 16:46:30 +03:00
Defined the key and secret via ENV vars
This commit is contained in:
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user