aldettinger commented on a change in pull request #3116: URL: https://github.com/apache/camel-quarkus/pull/3116#discussion_r713688156
########## File path: integration-test-groups/aws2/aws2-ddb/src/main/resources/application.properties ########## @@ -15,10 +15,16 @@ ## limitations under the License. ## --------------------------------------------------------------------------- -camel.component.aws2-ddb.access-key=${AWS_ACCESS_KEY} -camel.component.aws2-ddb.secret-key=${AWS_SECRET_KEY} -camel.component.aws2-ddb.region=${AWS_REGION:us-east-1} +#client for aws2-ddb is created by quarkus extension io.quarkus:quarkus-amazon-dynamodb +quarkus.dynamodb.aws.region=${AWS_REGION:us-east-1} +quarkus.dynamodb.aws.credentials.type=static +quarkus.dynamodb.aws.credentials.static-provider.access-key-id=${AWS_ACCESS_KEY} +quarkus.dynamodb.aws.credentials.static-provider.secret-access-key=${AWS_SECRET_KEY} +quarkus.dynamodb.sync-client.type=apache +quarkus.dynamodb.endpoint-override=${AWS_CONTAINER_CREDENTIALS_FULL_URI:} + +#client for aws2-ddbstreams is created by camel component Review comment: Ok, we have 2 components at play here and they have different types and they are autowired by types. Make sense to me. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org