Adding recipe for async-aws/symfony-bundle

This commit is contained in:
Nyholm
2020-02-23 12:58:26 +01:00
parent b1eab1332c
commit de1abe510c
2 changed files with 21 additions and 0 deletions
@@ -0,0 +1,9 @@
# Read documentation at https://github.com/async-aws/symfony-bundle
async_aws:
config:
region: eu-central-1
accessKeyId: '%env(AWS_KEY)%'
accessKeySecret: '%env(AWS_SECRET)%'
# All installed clients are automatically autowrired. Use this section to customize clients
clients:
@@ -0,0 +1,12 @@
{
"bundles": {
"AsyncAws\\Symfony\\Bundle\\AsyncAwsBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"AWS_KEY": "your-aws-key",
"AWS_SECRET": "your-aws-secret"
}
}