Skip to content

Commit

Permalink
Adjusted example port number
Browse files Browse the repository at this point in the history
  • Loading branch information
bczoma committed Mar 19, 2024
1 parent 47e840d commit b506c33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/services-and-listen-ports/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A service may also use plain text or secure transport. While it is generally rec
### Optional Inputs

* `service_rest_incoming_plain_text_enabled` - set to `true` in this example
* `service_rest_incoming_plain_text_listen_port` - set to `9000` in this example
* `service_rest_incoming_plain_text_listen_port` - set to `9001` in this example. Note that the port number must be unique for the broker, port 9000 is already used by the default VPN

Other optional module input variables have the same name as the attributes of the underlying provider resource. If omitted then the default for the related resource attribute will be configured on the broker. For attributes and defaults, refer to the [documentation of "solacebroker_msg_vpn"](https://registry.terraform.io/providers/SolaceProducts/solacebroker/latest/docs/resources/msg_vpn#optional).

Expand Down
2 changes: 1 addition & 1 deletion examples/services-and-listen-ports/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module "testvpn" {

// Enable and configure incoming messaging protocols, for example REST. Note that plain text is not recommended for production use.
service_rest_incoming_plain_text_enabled = true
service_rest_incoming_plain_text_listen_port = 9000
service_rest_incoming_plain_text_listen_port = 9001

// Uncomment to disable plain text SMF - however secure transport SMF requires a server certificate installed on the broker
// service_smf_plain_text_enabled = false
Expand Down

0 comments on commit b506c33

Please sign in to comment.