Skip to content

Commit

Permalink
Updating generated source (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jun 19, 2024
1 parent 729075f commit 4aee1b0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
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

0 comments on commit 4aee1b0

Please sign in to comment.