Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions examples/single-project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ module "secure-for-cloud_example_single-project" {
|------|-------------|------|---------|:--------:|
| <a name="input_benchmark_regions"></a> [benchmark\_regions](#input\_benchmark\_regions) | List of regions in which to run the benchmark. If empty, the task will contain all regions by default. | `list(string)` | `[]` | no |
| <a name="input_benchmark_role_name"></a> [benchmark\_role\_name](#input\_benchmark\_role\_name) | The name of the Service Account that will be created. | `string` | `"sysdigcloudbench"` | no |
| <a name="input_cloud_connector_image"></a> [cloud\_connector\_image](#input\_cloud\_connector\_image) | The image to use for the Cloud Connector. | `string` | `"us-docker.pkg.dev/sysdig-public-registry/secure-for-cloud/cloud-connector:latest"` | no |
| <a name="input_deploy_benchmark"></a> [deploy\_benchmark](#input\_deploy\_benchmark) | whether benchmark module is to be deployed | `bool` | `true` | no |
| <a name="input_deploy_scanning"></a> [deploy\_scanning](#input\_deploy\_scanning) | true/false whether scanning module is to be deployed | `bool` | `false` | no |
| <a name="input_name"></a> [name](#input\_name) | Suffix to be assigned to all created resources. Modify this value in case of conflict / 409 error to bypass Google soft delete issues | `string` | `"sfc"` | no |
Expand Down
1 change: 1 addition & 0 deletions examples/single-project/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ module "cloud_connector" {
cloud_connector_sa_email = google_service_account.connector_sa.email
connector_pubsub_topic_id = module.connector_project_sink.pubsub_topic_id
secure_api_token_secret_id = module.secure_secrets.secure_api_token_secret_name
image_name = var.cloud_connector_image

deploy_scanning = var.deploy_scanning
}
Expand Down
6 changes: 6 additions & 0 deletions examples/single-project/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ variable "benchmark_role_name" {
default = "sysdigcloudbench"
}

variable "cloud_connector_image" {
type = string
description = "The image to use for the Cloud Connector."
default = "us-docker.pkg.dev/sysdig-public-registry/secure-for-cloud/cloud-connector:latest"
}


#
# general
Expand Down