Skip to content
This repository was archived by the owner on Mar 19, 2025. It is now read-only.

Commit 41c32ef

Browse files
authored
feat: changed the default scan schedule of the DA to every 30 days (#191)
1 parent bfe3714 commit 41c32ef

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.secrets.baseline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"files": "go.sum|^.secrets.baseline$",
44
"lines": null
55
},
6-
"generated_at": "2023-12-11T06:39:44Z",
6+
"generated_at": "2023-12-12T06:39:44Z",
77
"plugins_used": [
88
{
99
"name": "AWSKeyDetector"

solutions/instances/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This solution supports provisioning and configuring the following infrastructure
4949
| Name | Description | Type | Default | Required |
5050
|------|-------------|------|---------|:--------:|
5151
| <a name="input_add_bucket_name_suffix"></a> [add\_bucket\_name\_suffix](#input\_add\_bucket\_name\_suffix) | Whether to add a generated 4-character suffix to the created Security and Compliance Center Object Storage bucket name. Applies only if not specifying an existing bucket. Set to `false` not to add the suffix to the bucket name in the `scc_cos_bucket_name` variable. | `bool` | `true` | no |
52-
| <a name="input_attachment_schedule"></a> [attachment\_schedule](#input\_attachment\_schedule) | The scanning schedule. Possible values: `daily`, `every_7_days`, `every_30_days`, `none`. | `string` | `"daily"` | no |
52+
| <a name="input_attachment_schedule"></a> [attachment\_schedule](#input\_attachment\_schedule) | The scanning schedule. Possible values: `daily`, `every_7_days`, `every_30_days`, `none`. | `string` | `"every_30_days"` | no |
5353
| <a name="input_cos_instance_access_tags"></a> [cos\_instance\_access\_tags](#input\_cos\_instance\_access\_tags) | A list of access tags to apply to the Object Storage instance. Applies only if not specifying an existing instance. | `list(string)` | `[]` | no |
5454
| <a name="input_cos_instance_name"></a> [cos\_instance\_name](#input\_cos\_instance\_name) | The name for the Object Storage instance. If a prefix input variable is specified, the prefix is added to the name in the `<prefix>-<name>` format. | `string` | `"base-security-services-cos"` | no |
5555
| <a name="input_cos_instance_tags"></a> [cos\_instance\_tags](#input\_cos\_instance\_tags) | The list of tags to add to the Object Storage instance. Applies only if not specifying an existing instance. | `list(string)` | `[]` | no |
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"ibmcloud_api_key": $VALIDATION_APIKEY,
33
"resource_group_name": $PREFIX,
4-
"existing_kms_instance_crn": $HPCS_US_SOUTH_CRN,
5-
"profile_attachments": "[]"
4+
"existing_kms_instance_crn": $HPCS_US_SOUTH_CRN
65
}

solutions/instances/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ variable "resource_groups_scope" {
239239
variable "attachment_schedule" {
240240
type = string
241241
description = "The scanning schedule. Possible values: `daily`, `every_7_days`, `every_30_days`, `none`."
242-
default = "daily"
242+
default = "every_30_days"
243243

244244
validation {
245245
condition = contains(["daily", "every_7_days", "every_30_days", "none"], var.attachment_schedule)

0 commit comments

Comments
 (0)