Azure APIM named values using terraform
I have a terraform variable as given below variable "named_values" { type = map(object({ value = string secret = bool secret_id = optional(string) identity_client_id = optional(string) })) default = { "my-named-value-1" = { value = "my-plain-text-value-1" secret = false secret_id…