Skip to content

Commit

Permalink
Fix - refactor customer_managed_key interface type (#623)
Browse files Browse the repository at this point in the history
  • Loading branch information
lonegunmanb authored Mar 2, 2024
1 parent f127c4a commit c69b716
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docs/static/includes/interfaces/int.cmk.schema.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
variable "customer_managed_key" {
type = object({
key_vault_resource_id = string
key_name = string
key_version = optional(string, null)
user_assigned_identity_resource_id = optional(string, null)
key_vault_resource_id = string
key_name = string
key_version = optional(string, null)
user_assigned_identity = optional(object({
resource_id = string
}), null)
})
default = null
}

0 comments on commit c69b716

Please sign in to comment.