diff --git a/README.md b/README.md index 57e8bd3..02a7226 100644 --- a/README.md +++ b/README.md @@ -42,10 +42,10 @@ No resources. | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | [cloudconnector\_deploy](#input\_cloudconnector\_deploy) | Whether to deploy or not CloudConnector | `bool` | `true` | no | -| [cloudrun\_image\_scanning\_deploy](#input\_cloudrun\_image\_scanning\_deploy) | Whether to deploy or not CloudRun image scanning | `bool` | `true` | no | -| [gcr\_image\_scanning\_deploy](#input\_gcr\_image\_scanning\_deploy) | Whether to deploy or not GCR image scanning | `bool` | `true` | no | +| [cloudrun\_image\_scanning\_deploy](#input\_cloudrun\_image\_scanning\_deploy) | Whether to deploy or not CloudRun image scanning | `bool` | `false` | no | +| [gcr\_image\_scanning\_deploy](#input\_gcr\_image\_scanning\_deploy) | Whether to deploy or not GCR image scanning | `bool` | `false` | no | | [location](#input\_location) | Zone where the stack will be deployed | `string` | `"us-central1"` | no | -| [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 | +| [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 | | [sysdig\_secure\_api\_token](#input\_sysdig\_secure\_api\_token) | Sysdig's Secure API Token | `string` | n/a | yes | | [sysdig\_secure\_endpoint](#input\_sysdig\_secure\_endpoint) | Sysdig Secure API endpoint | `string` | `"https://secure.sysdig.com"` | no | diff --git a/modules/cloud-connector/README.md b/modules/cloud-connector/README.md index 76579e6..f1f2621 100644 --- a/modules/cloud-connector/README.md +++ b/modules/cloud-connector/README.md @@ -55,7 +55,7 @@ No modules. | [config\_content](#input\_config\_content) | Contents of the configuration file to be saved in the bucket | `string` | `null` | no | | [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 | | [extra\_envs](#input\_extra\_envs) | Extra environment variables for the Cloud Connector instance | `map(string)` | `{}` | no | -| [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 | +| [image\_name](#input\_image\_name) | Cloud Connector image to deploy | `string` | `"gcr.io/mateo-burillo-ns/cloud-connector:latest"` | no | | [location](#input\_location) | Zone where the cloud connector will be deployed | `string` | `"us-central1"` | no | | [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 | | [sysdig\_secure\_api\_token](#input\_sysdig\_secure\_api\_token) | Sysdig's Secure API Token | `string` | n/a | yes | diff --git a/modules/cloud-connector/variables.tf b/modules/cloud-connector/variables.tf index caa01d5..27fc17b 100644 --- a/modules/cloud-connector/variables.tf +++ b/modules/cloud-connector/variables.tf @@ -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" } diff --git a/variables.tf b/variables.tf index 90c8369..726d11b 100644 --- a/variables.tf +++ b/variables.tf @@ -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 { @@ -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" }