From bec077f4c089db1a353fa4efd399bb46620a452e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Jul 2024 11:04:31 -0400 Subject: [PATCH] Updating generated source (#7) --- main.tf | 1 + variables.tf | 14 ++++++++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/main.tf b/main.tf index aa2d9ae..b84fff4 100644 --- a/main.tf +++ b/main.tf @@ -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 diff --git a/variables.tf b/variables.tf index 9d05ee4..c35e409 100644 --- a/variables.tf +++ b/variables.tf @@ -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 } @@ -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 } @@ -732,7 +732,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 } @@ -767,6 +767,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