Skip to content

Commit

Permalink
Fixed missing client profile attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
bczoma committed Mar 26, 2024
1 parent 2ce5a62 commit cd7f1fb
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0-rc.3
0.1.0-rc.4
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 cd7f1fb

Please sign in to comment.