Address reviewer comments.
This commit is contained in:
@@ -94,6 +94,16 @@ variable "regions" {
|
||||
default = []
|
||||
}
|
||||
|
||||
variable "schema" {
|
||||
description = "Topic schema. If set, all messages in this topic should follow this schema."
|
||||
type = object({
|
||||
definition = string
|
||||
msg_encoding = optional(string, "ENCODING_UNSPECIFIED")
|
||||
schema_type = string
|
||||
})
|
||||
default = null
|
||||
}
|
||||
|
||||
variable "subscription_iam" {
|
||||
description = "IAM bindings for subscriptions in {SUBSCRIPTION => {ROLE => [MEMBERS]}} format."
|
||||
type = map(map(list(string)))
|
||||
@@ -114,13 +124,3 @@ variable "subscriptions" {
|
||||
}))
|
||||
default = {}
|
||||
}
|
||||
|
||||
variable "schema" {
|
||||
description = "Topic schema. If set, all messages in this topic should follow this schema."
|
||||
type = object({
|
||||
schema_type = string
|
||||
definition = string
|
||||
msg_encoding = optional(string, "ENCODING_UNSPECIFIED")
|
||||
})
|
||||
default = null
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user