Skip to content

Commit

Permalink
chore: Fulfill checkov checks
Browse files Browse the repository at this point in the history
  • Loading branch information
mkilchhofer committed Jan 24, 2023
1 parent f61f35c commit 7012178
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .checkov_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ quiet: true
secrets-scan-file-type: []
skip-check:
- CKV_GHA_3
- CKV_AZURE_112
- CKV_AZURE_168
- CKV_AZURE_170
skip-framework:
Expand Down
9 changes: 5 additions & 4 deletions examples/named_cluster/kms.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ resource "azurerm_key_vault_key" "kms" {
"verify",
"wrapKey",
]
key_type = "RSA"
key_vault_id = azurerm_key_vault.des_vault.id
name = "etcd-encryption"
key_size = 2048
key_type = "RSA"
key_vault_id = azurerm_key_vault.des_vault.id
name = "etcd-encryption"
expiration_date = timeadd("${formatdate("YYYY-MM-DD", timestamp())}T00:00:00Z", "168h")
key_size = 2048

depends_on = [
azurerm_key_vault_access_policy.current_user
Expand Down

0 comments on commit 7012178

Please sign in to comment.