Skip to content

Commit

Permalink
Generated description updates
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Mar 22, 2024
1 parent f573500 commit 21d4de5
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 41 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0-rc.2
0.1.0-rc.3
14 changes: 7 additions & 7 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,40 +16,40 @@

output "queue" {
value = try(solacebroker_msg_vpn_queue.main[0], null)
description = "A Queue acts as both a destination that clients can publish messages to, and as an endpoint that clients can bind consumers to and consume messages from."
description = "A Queue acts as both a destination that clients can publish messages to, and as an endpoint that clients can bind consumers to and consume messages from"
}

output "topic_endpoint" {
value = try(solacebroker_msg_vpn_topic_endpoint.main[0], null)
description = "A Topic Endpoint attracts messages published to a topic for which the Topic Endpoint has a matching topic subscription. The topic subscription for the Topic Endpoint is specified in the client request to bind a Flow to that Topic Endpoint. Queues are significantly more flexible than Topic Endpoints and are the recommended approach for most applications. The use of Topic Endpoints should be restricted to JMS applications."
description = "A Topic Endpoint attracts messages published to a topic for which the Topic Endpoint has a matching topic subscription. The topic subscription for the Topic Endpoint is specified in the client request to bind a Flow to that Topic Endpoint. Queues are significantly more flexible than Topic Endpoints and are the recommended approach for most applications. The use of Topic Endpoints should be restricted to JMS applications"
}

output "queue_template" {
value = try(solacebroker_msg_vpn_queue_template.main[0], null)
description = "A Queue Template provides a mechanism for specifying the initial state for client created queues."
description = "A Queue Template provides a mechanism for specifying the initial state for client created queues"
}

output "topic_endpoint_template" {
value = try(solacebroker_msg_vpn_topic_endpoint_template.main[0], null)
description = "A Topic Endpoint Template provides a mechanism for specifying the initial state for client created topic endpoints."
description = "A Topic Endpoint Template provides a mechanism for specifying the initial state for client created topic endpoints"
}

output "queue_subscriptions" {
value = try({
for instance in solacebroker_msg_vpn_queue_subscription.main :
instance.subscription_topic => instance
}, null)
description = "One or more Queue Subscriptions can be added to a durable queue so that Guaranteed messages published to matching topics are also delivered to and spooled by the queue."
description = "One or more Queue Subscriptions can be added to a durable queue so that Guaranteed messages published to matching topics are also delivered to and spooled by the queue"
}

output "jndi_queue" {
value = try(solacebroker_msg_vpn_jndi_queue.main[0], null)
description = "The message broker provides an internal JNDI store for provisioned Queue objects that clients can access through JNDI lookups."
description = "The message broker provides an internal JNDI store for provisioned Queue objects that clients can access through JNDI lookups"
}

output "jndi_topic" {
value = try(solacebroker_msg_vpn_jndi_topic.main[0], null)
description = "The message broker provides an internal JNDI store for provisioned Topic objects that clients can access through JNDI lookups."
description = "The message broker provides an internal JNDI store for provisioned Topic objects that clients can access through JNDI lookups"
}


66 changes: 33 additions & 33 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -77,43 +77,43 @@ variable "jndi_topic_name" {
}

variable "access_type" {
description = "The access type for delivering messages to consumer flows bound to the Queue."
description = "The access type for delivering messages to consumer flows bound to the Queue"
type = string
default = null
}

variable "consumer_ack_propagation_enabled" {
description = "Enable or disable the propagation of consumer acknowledgments (ACKs) received on the active replication Message VPN to the standby replication Message VPN."
description = "Enable or disable the propagation of consumer acknowledgments (ACKs) received on the active replication Message VPN to the standby replication Message VPN"
type = bool
default = null
}

variable "dead_msg_queue" {
description = "The name of the Dead Message Queue (DMQ) used by the Queue."
description = "The name of the Dead Message Queue (DMQ) used by the Queue"
type = string
default = null
}

variable "delivery_count_enabled" {
description = "Enable or disable the ability for client applications to query the message delivery count of messages received from the Queue."
description = "Enable or disable the ability for client applications to query the message delivery count of messages received from the Queue"
type = bool
default = null
}

variable "delivery_delay" {
description = "The delay, in seconds, to apply to messages arriving on the Queue before the messages are eligible for delivery."
description = "The delay, in seconds, to apply to messages arriving on the Queue before the messages are eligible for delivery"
type = number
default = null
}

variable "durability_override" {
description = "Controls the durability of queues created from this template."
description = "Controls the durability of queues created from this template"
type = string
default = null
}

variable "event_bind_count_threshold" {
description = "The thresholds for the Queue consumer flows event, relative to `max_bind_count`."
description = "The thresholds for the Queue consumer flows event, relative to `max_bind_count`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
Expand All @@ -124,7 +124,7 @@ variable "event_bind_count_threshold" {
}

variable "event_msg_spool_usage_threshold" {
description = "The thresholds for the message spool usage event of the Queue, relative to `max_msg_spool_usage`."
description = "The thresholds for the message spool usage event of the Queue, relative to `max_msg_spool_usage`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
Expand All @@ -135,7 +135,7 @@ variable "event_msg_spool_usage_threshold" {
}

variable "event_reject_low_priority_msg_limit_threshold" {
description = "The thresholds for the maximum allowed number of any priority messages queued in the Queue event, relative to `reject_low_priority_msg_limit`."
description = "The thresholds for the maximum allowed number of any priority messages queued in the Queue event, relative to `reject_low_priority_msg_limit`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
Expand All @@ -146,7 +146,7 @@ variable "event_reject_low_priority_msg_limit_threshold" {
}

variable "event_spool_usage_threshold" {
description = "The thresholds for the message spool usage event of the Topic Endpoint, relative to `max_spool_usage`."
description = "The thresholds for the message spool usage event of the Topic Endpoint, relative to `max_spool_usage`"
type = object({
set_percent = optional(number)
clear_percent = optional(number)
Expand All @@ -157,139 +157,139 @@ variable "event_spool_usage_threshold" {
}

variable "max_bind_count" {
description = "The maximum number of consumer flows that can bind to the Queue."
description = "The maximum number of consumer flows that can bind to the Queue"
type = number
default = null
}

variable "max_delivered_unacked_msgs_per_flow" {
description = "The maximum number of messages delivered but not acknowledged per flow for the Queue."
description = "The maximum number of messages delivered but not acknowledged per flow for the Queue"
type = number
default = null
}

variable "max_msg_size" {
description = "The maximum message size allowed in the Queue, in bytes (B)."
description = "The maximum message size allowed in the Queue, in bytes (B)"
type = number
default = null
}

variable "max_msg_spool_usage" {
description = "The maximum message spool usage allowed by the Queue, in megabytes (MB)."
description = "The maximum message spool usage allowed by the Queue, in megabytes (MB)"
type = number
default = null
}

variable "max_redelivery_count" {
description = "The maximum number of times the Queue will attempt redelivery of a message prior to it being discarded or moved to the DMQ."
description = "The maximum number of times the Queue will attempt redelivery of a message prior to it being discarded or moved to the DMQ"
type = number
default = null
}

variable "max_spool_usage" {
description = "The maximum message spool usage allowed by the Topic Endpoint, in megabytes (MB)."
description = "The maximum message spool usage allowed by the Topic Endpoint, in megabytes (MB)"
type = number
default = null
}

variable "max_ttl" {
description = "The maximum time in seconds a message can stay in the Queue when `respect_ttl_enabled` is `\"true\"`."
description = "The maximum time in seconds a message can stay in the Queue when `respect_ttl_enabled` is `\"true\"`"
type = number
default = null
}

variable "owner" {
description = "The Client Username that owns the Queue and has permission equivalent to `\"delete\"`."
description = "The Client Username that owns the Queue and has permission equivalent to `\"delete\"`"
type = string
default = null
}

variable "partition_count" {
description = "The count of partitions of the queue."
description = "The count of partitions of the queue"
type = number
default = null
}

variable "partition_rebalance_delay" {
description = "The delay (in seconds) before a partition rebalance is started once needed."
description = "The delay (in seconds) before a partition rebalance is started once needed"
type = number
default = null
}

variable "partition_rebalance_max_handoff_time" {
description = "The maximum time (in seconds) to wait before handing off a partition while rebalancing."
description = "The maximum time (in seconds) to wait before handing off a partition while rebalancing"
type = number
default = null
}

variable "queue_name_filter" {
description = "A pattern used to determine which Queues use settings from this Template."
description = "A pattern used to determine which Queues use settings from this Template"
type = string
default = null
}

variable "redelivery_delay_enabled" {
description = "Enable or disable a message redelivery delay."
description = "Enable or disable a message redelivery delay"
type = bool
default = null
}

variable "redelivery_delay_initial_interval" {
description = "The delay to be used between the first 2 redelivery attempts."
description = "The delay to be used between the first 2 redelivery attempts"
type = number
default = null
}

variable "redelivery_delay_max_interval" {
description = "The maximum delay to be used between any 2 redelivery attempts."
description = "The maximum delay to be used between any 2 redelivery attempts"
type = number
default = null
}

variable "redelivery_delay_multiplier" {
description = "The amount each delay interval is multiplied by after each failed delivery attempt."
description = "The amount each delay interval is multiplied by after each failed delivery attempt"
type = number
default = null
}

variable "redelivery_enabled" {
description = "Enable or disable message redelivery."
description = "Enable or disable message redelivery"
type = bool
default = null
}

variable "reject_low_priority_msg_enabled" {
description = "Enable or disable the checking of low priority messages against the `reject_low_priority_msg_limit`."
description = "Enable or disable the checking of low priority messages against the `reject_low_priority_msg_limit`"
type = bool
default = null
}

variable "reject_low_priority_msg_limit" {
description = "The number of messages of any priority in the Queue above which low priority messages are not admitted but higher priority messages are allowed."
description = "The number of messages of any priority in the Queue above which low priority messages are not admitted but higher priority messages are allowed"
type = number
default = null
}

variable "reject_msg_to_sender_on_discard_behavior" {
description = "Determines when to return negative acknowledgments (NACKs) to sending clients on message discards."
description = "Determines when to return negative acknowledgments (NACKs) to sending clients on message discards"
type = string
default = null
}

variable "respect_msg_priority_enabled" {
description = "Enable or disable the respecting of message priority."
description = "Enable or disable the respecting of message priority"
type = bool
default = null
}

variable "respect_ttl_enabled" {
description = "Enable or disable the respecting of the time-to-live (TTL) for messages in the Queue."
description = "Enable or disable the respecting of the time-to-live (TTL) for messages in the Queue"
type = bool
default = null
}

variable "topic_endpoint_name_filter" {
description = "A pattern used to determine which Topic Endpoints use settings from this Template."
description = "A pattern used to determine which Topic Endpoints use settings from this Template"
type = string
default = null
}
Expand Down

0 comments on commit 21d4de5

Please sign in to comment.