Skip to content

Commit 0e37045

Browse files
committed
fix: fix precommit hook validations
1 parent 19c40dc commit 0e37045

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

examples/all-combined/clusterstore.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ module "sm_userpass_secret" {
5151
#tfsec:ignore:general-secrets-no-plaintext-exposure
5252
secret_username = "artifactory-user" # checkov:skip=CKV_SECRET_6: does not require high entropy string as is static value
5353
secret_auto_rotation = false
54-
secret_auto_rotation_interval = 0
55-
secret_auto_rotation_unit = null
54+
secret_auto_rotation_interval = 1
55+
secret_auto_rotation_unit = "day"
5656
providers = {
5757
ibm = ibm.ibm-sm
5858
}

examples/basic/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,8 +382,8 @@ module "sm_userpass_secret" {
382382
#tfsec:ignore:general-secrets-no-plaintext-exposure
383383
secret_username = "artifactory-user" # checkov:skip=CKV_SECRET_6: does not require high entropy string as is static value
384384
secret_auto_rotation = false
385-
secret_auto_rotation_interval = 0
386-
secret_auto_rotation_unit = null
385+
secret_auto_rotation_interval = 1
386+
secret_auto_rotation_unit = "day"
387387
providers = {
388388
ibm = ibm.ibm-sm
389389
}

examples/basic/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ terraform {
1515
}
1616
ibm = {
1717
source = "IBM-Cloud/ibm"
18-
version = "= 1.79.0"
18+
version = "= 1.79.2"
1919
}
2020
null = {
2121
source = "hashicorp/null"

solutions/fully-configurable/example-secrets-configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ module "sm_userpass_secret" {
2929
#tfsec:ignore:general-secrets-no-plaintext-exposure
3030
secret_username = "artifactory-user" # checkov:skip=CKV_SECRET_6: does not require high entropy string as is static value
3131
secret_auto_rotation = false
32-
secret_auto_rotation_interval = 0
33-
secret_auto_rotation_unit = null
32+
secret_auto_rotation_interval = 1
33+
secret_auto_rotation_unit = "day"
3434
providers = {
3535
ibm = ibm.ibm-sm
3636
}

0 commit comments

Comments
 (0)