From 2fb24f90b9b0385486ef7c7bf27e95062deb5b71 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 21 Jan 2024 10:34:45 +0100 Subject: [PATCH] Suggested spec change to resource locks (`lock`) interface for Terraform (#489) Co-authored-by: Matt White <16320656+matt-FFFFFF@users.noreply.github.com> --- .../includes/interfaces/int.locks.schema.tf | 25 ++++++++++++------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/docs/static/includes/interfaces/int.locks.schema.tf b/docs/static/includes/interfaces/int.locks.schema.tf index 8f72a46db..c03f78e2e 100644 --- a/docs/static/includes/interfaces/int.locks.schema.tf +++ b/docs/static/includes/interfaces/int.locks.schema.tf @@ -1,21 +1,28 @@ variable "lock" { type = object({ + kind = string name = optional(string, null) - kind = optional(string, "None") }) - description = "The lock level to apply to the Key Vault. Possible values are `None`, `CanNotDelete`, and `ReadOnly`." - default = {} - nullable = false + default = null + description = <