diff --git a/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml b/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml new file mode 100644 index 00000000..0a5e7a4a --- /dev/null +++ b/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml @@ -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 autowired. Use this section to customize clients + clients: diff --git a/async-aws/async-aws-bundle/0.1/manifest.json b/async-aws/async-aws-bundle/0.1/manifest.json new file mode 100644 index 00000000..f0371b71 --- /dev/null +++ b/async-aws/async-aws-bundle/0.1/manifest.json @@ -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" + } +}