Skip to content

Commit

Permalink
chore: Fix TF linter errors on named_cluster example
Browse files Browse the repository at this point in the history
  • Loading branch information
mkilchhofer committed Jan 24, 2023
1 parent 2bb6f10 commit f61f35c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions examples/named_cluster/kms.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
resource "azurerm_key_vault_key" "kms" {
name = "etcd-encryption"
key_vault_id = azurerm_key_vault.des_vault.id
key_type = "RSA"
key_size = 2048

key_opts = [
"decrypt",
"encrypt",
Expand All @@ -12,6 +7,10 @@ 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

depends_on = [
azurerm_key_vault_access_policy.current_user
Expand Down

0 comments on commit f61f35c

Please sign in to comment.