From 4d476ec3e143b527bd5cbf8dc6343bbba34b5c67 Mon Sep 17 00:00:00 2001 From: Ahmed <146642447+devmedcoding@users.noreply.github.com> Date: Wed, 11 Dec 2024 17:12:50 -0500 Subject: [PATCH] Update aqua.d/conf.yaml example in README for SaaS and On-Prem compatibility - Updated the `aqua.d/conf.yaml` example in the README to reflect the configuration changes for compatibility with both Aqua SaaS and On-Prem environments. - Added a new `auth_type` parameter to specify whether the environment is `saas` or `onprem`. - Updated comments to guide users on using appropriate credentials and URLs based on their deployment type. - Included instructions for configuring the `api_user` and `password` for On-Prem and `api_key` and `api_secret` for SaaS authentication. - Clarified the behavior of the integration for both environments and ensured proper tagging guidance. This update provides clear instructions for configuring the Aqua Datadog integration, reducing confusion for users with different deployment setups. --- aqua/README.md | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/aqua/README.md b/aqua/README.md index 753526730a..b6ae508f4d 100644 --- a/aqua/README.md +++ b/aqua/README.md @@ -30,14 +30,25 @@ For Agent v7.21+ / v6.21+, follow the instructions below to install the Aqua che ```yaml instances: + - url: https://api.cloudsploit.com + auth_method: saas + api_key: + api_secret: + tags: + - environment:production + - url: http://your-aqua-instance.com - api_user: "" - password: "" + auth_method: onprem + api_user: + password: + tags: + - environment:test ``` - Change the `api_user` and `password` parameter values and configure them for your environment. + For SaaS, change the `api_key` and `api_secret` parameter values and configure them for your environment. + For On-Prem, change the `api_user` and `password` parameter values and configure them for your environment. -2. [Restart the Agent][9]. +3. [Restart the Agent][9]. #### Log collection