Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New release v0.1.0-rc.4 #14

Merged
merged 2 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ The following table shows the resources created. "X" denotes a resource always c
| solacebroker_msg_vpn_acl_profile | O | This is an additional configurable profile. A default ACL profile is always created |
| solacebroker_msg_vpn_client_profile | O | This is an additional configurable profile. A default client profile is always created |
| solacebroker_msg_vpn_authentication_oauth_profile | O | |
| solacebroker_msg_vpn_authentication_oauth_profile_client_required_claim | O | Requires above AOuth profile and it will be assigned to that |
| solacebroker_msg_vpn_authentication_oauth_profile_resource_server_required_claim | O | Requires above AOuth profile and it will be assigned to that |
| solacebroker_msg_vpn_authentication_oauth_profile_client_required_claim | O | Requires above OAuth profile and it will be assigned to that |
| solacebroker_msg_vpn_authentication_oauth_profile_resource_server_required_claim | O | Requires above OAuth profile and it will be assigned to that |
| solacebroker_msg_vpn_cert_matching_rule | O | |
| solacebroker_msg_vpn_cert_matching_rule_condition | O | Requires above certification matching rule and it will be assigned to that |
| solacebroker_msg_vpn_cert_matching_rule_attribute_filter | O | Requires above certification matching rule and it will be assigned to that |
Expand Down
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
Loading