this repo has no description
1variable "credentials" {
2 type = object({
3 client_certificate = string
4 client_key = string
5 cluster_ca_certificate = string
6 host = string
7 })
8}
9
10variable "sources" {
11 type = map(object({
12 random = optional(bool, false)
13 value = optional(string)
14 }))
15 default = {}
16}
17
18variable "destinations" {
19 type = map(object({
20 data = map(string)
21 type = optional(string, "Opaque")
22 }))
23 default = {}
24}