From d7571e7a77c310a719bd2621c27fbb0817a8600f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 10:43:07 -0400 Subject: [PATCH] Formatting updatesd --- examples/acl-profile-exceptions/main.tf | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/acl-profile-exceptions/main.tf b/examples/acl-profile-exceptions/main.tf index 86e5ed0..1d303ab 100644 --- a/examples/acl-profile-exceptions/main.tf +++ b/examples/acl-profile-exceptions/main.tf @@ -21,23 +21,23 @@ provider "solacebroker" { module "testclient" { source = "../.." - msg_vpn_name = "default" - client_identifier_type = "client_username" - client_identifier_name = "myclient" - client_profile_name = "default" - acl_profile_name = "default" + msg_vpn_name = "default" + client_identifier_type = "client_username" + client_identifier_name = "myclient" + client_profile_name = "default" + acl_profile_name = "default" // The "default" ACL profile, used in the example, has default actions "allow", so exceptions are "deny" // example of multiple publish topic exceptions acl_profile_publish_topic_exceptions = [ { - publish_topic_exception = "a/b/c*", + publish_topic_exception = "a/b/c*", publish_topic_exception_syntax = "smf" }, { // example of using substitution variable - no need to escape the $ character here - publish_topic_exception = "g/$client-username", + publish_topic_exception = "g/$client-username", publish_topic_exception_syntax = "smf" } ]