this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 24 lines 459 B view raw
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}