Skip to content

Commit

Permalink
Fixed missing client profile attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Mar 28, 2024
1 parent f52c782 commit 93fa862
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
6 changes: 6 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,13 @@ resource "solacebroker_msg_vpn_client_profile" "main" {
msg_vpn_name = solacebroker_msg_vpn.main.msg_vpn_name
client_profile_name = var.client_profile_name

allow_bridge_connections_enabled = var.allow_bridge_connections_enabled
allow_guaranteed_endpoint_create_durability = var.allow_guaranteed_endpoint_create_durability
allow_guaranteed_endpoint_create_enabled = var.allow_guaranteed_endpoint_create_enabled
allow_guaranteed_msg_receive_enabled = var.allow_guaranteed_msg_receive_enabled
allow_guaranteed_msg_send_enabled = var.allow_guaranteed_msg_send_enabled
allow_shared_subscriptions_enabled = var.allow_shared_subscriptions_enabled
allow_transacted_sessions_enabled = var.allow_transacted_sessions_enabled
api_queue_management_copy_from_on_create_template_name = var.api_queue_management_copy_from_on_create_template_name
api_topic_endpoint_management_copy_from_on_create_template_name = var.api_topic_endpoint_management_copy_from_on_create_template_name
compression_enabled = var.compression_enabled
Expand Down
36 changes: 36 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,48 @@ variable "alias" {
default = null
}

variable "allow_bridge_connections_enabled" {
description = "Enable or disable allowing Bridge clients using the Client Profile to connect"
type = bool
default = null
}

variable "allow_guaranteed_endpoint_create_durability" {
description = "The types of Queues and Topic Endpoints that clients using the client-profile can create"
type = string
default = null
}

variable "allow_guaranteed_endpoint_create_enabled" {
description = "Enable or disable allowing clients using the Client Profile to create topic endpoints or queues"
type = bool
default = null
}

variable "allow_guaranteed_msg_receive_enabled" {
description = "Enable or disable allowing clients using the Client Profile to receive guaranteed messages"
type = bool
default = null
}

variable "allow_guaranteed_msg_send_enabled" {
description = "Enable or disable allowing clients using the Client Profile to send guaranteed messages"
type = bool
default = null
}

variable "allow_shared_subscriptions_enabled" {
description = "Enable or disable allowing shared subscriptions"
type = bool
default = null
}

variable "allow_transacted_sessions_enabled" {
description = "Enable or disable allowing clients using the Client Profile to establish transacted sessions"
type = bool
default = null
}

variable "api_queue_management_copy_from_on_create_template_name" {
description = "The name of a queue template to copy settings from when a new queue is created by a client using the Client Profile"
type = string
Expand Down

0 comments on commit 93fa862

Please sign in to comment.