Skip to content

Commit 3d87b3a

Browse files
committed
SAAS-23305: Updating README.md
1 parent f89c866 commit 3d87b3a

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -44,22 +44,22 @@ Here's an example of how to use this module while using a dedicated project:
4444
4545
# Defining local variables
4646
locals {
47-
region = "us-central1" # Google Cloud region to use
48-
dedicated = true # Whether to create a dedicated project for Aqua resources
49-
type = "single" # Type of deployment (single project or organization)
50-
org_name = "<org_name>" # Google Cloud Organization name
51-
tenant_id = "<tenant_id>" # Aqua tenant ID
52-
project_id = "<project_id>" # Google Cloud project ID (existing project to be onboarded)
53-
aqua_aws_account_id = "<aqua_aws_account_id>" # Aqua AWS account ID
54-
aqua_bucket_name = "<aqua_bucket_name>" # Aqua bucket name
55-
aqua_configuration_id = "<aqua_configuration_id>" # Aqua configuration ID
56-
aqua_cspm_group_id = 123456 # Aqua CSPM group ID
57-
aqua_custom_labels = { label = "true" } # Additional custom labels to apply to Aqua resources
58-
aqua_api_key = "<aqua_api_key>" # Replace with generated aqua API key
59-
aqua_api_secret = "<aqua_api_secret>" # Replace with generated aqua API secret
60-
aqua_autoconnect_url = "<aqua_autoconnect_url>" # Aqua Autoconnect API URL
61-
aqua_volscan_api_token = "<aqua_volscan_api_token>" # Aqua Volume Scanning API token
62-
aqua_volscan_api_url = "<aqua_volscan_api_url>" # Aqua Volume Scanning API URL
47+
region = "us-central1" # Google Cloud region to use
48+
dedicated = true # Whether to create a dedicated project for Aqua resources
49+
type = "single" # Type of deployment (single project or organization)
50+
org_name = "<org_name>" # Google Cloud Organization name
51+
tenant_id = "<tenant_id>" # Aqua tenant ID
52+
project_id = "<project_id>" # Google Cloud project ID (existing project to be onboarded)
53+
aqua_aws_account_id = "<aqua_aws_account_id>" # Aqua AWS account ID
54+
aqua_bucket_name = "<aqua_bucket_name>" # Aqua bucket name
55+
aqua_configuration_id = "<aqua_configuration_id>" # Aqua configuration ID
56+
aqua_cspm_group_id = 123456 # Aqua CSPM group ID
57+
aqua_custom_labels = { label = "true" } # Additional custom labels to apply to Aqua resources
58+
aqua_api_key = "<aqua_api_key>" # Replace with generated aqua API key
59+
aqua_api_secret = "<aqua_api_secret>" # Replace with generated aqua API secret
60+
aqua_autoconnect_url = "<aqua_autoconnect_url>" # Aqua Autoconnect API URL
61+
aqua_volscan_api_token = "<aqua_volscan_api_token>" # Aqua Volume Scanning API token
62+
aqua_volscan_api_url = "<aqua_volscan_api_url>" # Aqua Volume Scanning API URL
6363
dedicated_project_id = "aqua-agentless-${local.tenant_id}-${local.org_hash}"
6464
labels = merge(local.aqua_custom_labels, { "aqua-agentless-scanner" = "true" }) # Combined labels for Aqua resources
6565
org_hash = substr(sha1(local.org_name), 0, 6) # Hashed organization name (first 6 characters)

0 commit comments

Comments
 (0)