Skip to content

Commit

Permalink
Formatting updatesd
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Mar 12, 2024
1 parent c5b718c commit d7571e7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions examples/acl-profile-exceptions/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
Expand Down

0 comments on commit d7571e7

Please sign in to comment.