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

Merge updates into dev1.0.0-rc.1 #18

Merged
merged 1 commit into from
Jun 19, 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
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ resource "solacebroker_msg_vpn_authentication_oauth_profile" "main" {
issuer = var.issuer
mqtt_username_validate_enabled = var.mqtt_username_validate_enabled
oauth_role = var.oauth_role
proxy_name = var.proxy_name
resource_server_parse_access_token_enabled = var.resource_server_parse_access_token_enabled
resource_server_required_audience = var.resource_server_required_audience
resource_server_required_issuer = var.resource_server_required_issuer
Expand Down
14 changes: 10 additions & 4 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ variable "authentication_basic_radius_domain" {
}

variable "authentication_client_cert_allow_api_provided_username_enabled" {
description = "Enable or disable allowing a client to specify a Client Username via the API connect method"
description = "Enable or disable allowing an incoming client connection to specify a Client Username via the API connect method"
type = bool
default = null
}
Expand Down Expand Up @@ -247,13 +247,13 @@ variable "authentication_client_cert_validate_date_enabled" {
}

variable "authentication_kerberos_allow_api_provided_username_enabled" {
description = "Enable or disable allowing a client to specify a Client Username via the API connect method"
description = "Enable or disable allowing an incoming client connection to specify a Client Username via the API connect method"
type = bool
default = null
}

variable "authentication_kerberos_enabled" {
description = "Enable or disable Kerberos authentication in the Message VPN"
description = "Enable or disable Kerberos authentication for clients connecting to the Message VPN"
type = bool
default = null
}
Expand Down Expand Up @@ -738,7 +738,7 @@ variable "max_msgs_per_transaction" {
}

variable "max_subscription_count" {
description = "The maximum number of local client subscriptions that can be added to the Message VPN"
description = "The maximum number of local subscriptions that can be added to the Message VPN"
type = number
default = null
}
Expand Down Expand Up @@ -773,6 +773,12 @@ variable "oauth_role" {
default = null
}

variable "proxy_name" {
description = "The name of the proxy to use for discovery, user info, jwks, and introspection requests"
type = string
default = null
}

variable "publish_topic_default_action" {
description = "The default action to take when a client using the ACL Profile publishes to a topic in the Message VPN"
type = string
Expand Down