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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ No resources.
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_cloudconnector_deploy"></a> [cloudconnector\_deploy](#input\_cloudconnector\_deploy) | Whether to deploy or not CloudConnector | `bool` | `true` | no |
| <a name="input_cloudrun_image_scanning_deploy"></a> [cloudrun\_image\_scanning\_deploy](#input\_cloudrun\_image\_scanning\_deploy) | Whether to deploy or not CloudRun image scanning | `bool` | `true` | no |
| <a name="input_gcr_image_scanning_deploy"></a> [gcr\_image\_scanning\_deploy](#input\_gcr\_image\_scanning\_deploy) | Whether to deploy or not GCR image scanning | `bool` | `true` | no |
| <a name="input_cloudrun_image_scanning_deploy"></a> [cloudrun\_image\_scanning\_deploy](#input\_cloudrun\_image\_scanning\_deploy) | Whether to deploy or not CloudRun image scanning | `bool` | `false` | no |
| <a name="input_gcr_image_scanning_deploy"></a> [gcr\_image\_scanning\_deploy](#input\_gcr\_image\_scanning\_deploy) | Whether to deploy or not GCR image scanning | `bool` | `false` | no |
| <a name="input_location"></a> [location](#input\_location) | Zone where the stack will be deployed | `string` | `"us-central1"` | no |
| <a name="input_naming_prefix"></a> [naming\_prefix](#input\_naming\_prefix) | Prefix for resource names. Use the default unless you need to install multiple instances, and modify the deployment at the main account accordingly | `string` | `"SysdigCloud"` | no |
| <a name="input_naming_prefix"></a> [naming\_prefix](#input\_naming\_prefix) | Prefix for resource names. Use the default unless you need to install multiple instances, and modify the deployment at the main account accordingly | `string` | n/a | yes |
| <a name="input_sysdig_secure_api_token"></a> [sysdig\_secure\_api\_token](#input\_sysdig\_secure\_api\_token) | Sysdig's Secure API Token | `string` | n/a | yes |
| <a name="input_sysdig_secure_endpoint"></a> [sysdig\_secure\_endpoint](#input\_sysdig\_secure\_endpoint) | Sysdig Secure API endpoint | `string` | `"https://secure.sysdig.com"` | no |

Expand Down
2 changes: 1 addition & 1 deletion modules/cloud-connector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ No modules.
| <a name="input_config_content"></a> [config\_content](#input\_config\_content) | Contents of the configuration file to be saved in the bucket | `string` | `null` | no |
| <a name="input_config_source"></a> [config\_source](#input\_config\_source) | Path to a file that contains the contents of the configuration file to be saved in the bucket | `string` | `null` | no |
| <a name="input_extra_envs"></a> [extra\_envs](#input\_extra\_envs) | Extra environment variables for the Cloud Connector instance | `map(string)` | `{}` | no |
| <a name="input_image_name"></a> [image\_name](#input\_image\_name) | Cloud Connector image to deploy | `string` | `"us-central1-docker.pkg.dev/mateo-burillo-ns/cloud-connector/cloud-connector:latest"` | no |
| <a name="input_image_name"></a> [image\_name](#input\_image\_name) | Cloud Connector image to deploy | `string` | `"gcr.io/mateo-burillo-ns/cloud-connector:latest"` | no |
| <a name="input_location"></a> [location](#input\_location) | Zone where the cloud connector will be deployed | `string` | `"us-central1"` | no |
| <a name="input_naming_prefix"></a> [naming\_prefix](#input\_naming\_prefix) | Prefix for resource names. Use the default unless you need to install multiple instances, and modify the deployment at the main account accordingly | `string` | `"SysdigCloud"` | no |
| <a name="input_sysdig_secure_api_token"></a> [sysdig\_secure\_api\_token](#input\_sysdig\_secure\_api\_token) | Sysdig's Secure API Token | `string` | n/a | yes |
Expand Down
2 changes: 1 addition & 1 deletion modules/cloud-connector/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ variable "location" {

variable "image_name" {
type = string
default = "us-central1-docker.pkg.dev/mateo-burillo-ns/cloud-connector/cloud-connector:latest"
default = "gcr.io/mateo-burillo-ns/cloud-connector:latest"
description = "Cloud Connector image to deploy"
}

Expand Down
5 changes: 2 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
variable "naming_prefix" {
type = string
default = "SysdigCloud"
description = "Prefix for resource names. Use the default unless you need to install multiple instances, and modify the deployment at the main account accordingly"

validation {
Expand Down Expand Up @@ -29,13 +28,13 @@ variable "cloudconnector_deploy" {

variable "gcr_image_scanning_deploy" {
type = bool
default = true
default = false
description = "Whether to deploy or not GCR image scanning"
}

variable "cloudrun_image_scanning_deploy" {
type = bool
default = true
default = false
description = "Whether to deploy or not CloudRun image scanning"
}

Expand Down