Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/v4/security/jwt-bearer.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ cf bind-service MY_APPLICATION MY_SERVICE_INSTANCE
cf restage MY_APPLICATION
```

For further information, refer to the [Single Sign-On for Tanzu developer guide](https://techdocs.broadcom.com/us/en/vmware-tanzu/platform-services/single-sign-on-for-tanzu/1-16/sso-tanzu/developer-index.html) or follow the instructions included in the [Steeltoe Security samples](https://github.com/SteeltoeOSS/Samples/blob/latest/Security/src/AuthWeb/README.md).
For further information, refer to the [Single Sign-On for Tanzu developer guide](https://techdocs.broadcom.com/us/en/vmware-tanzu/platform-services/single-sign-on-for-tanzu/1-16/sso-tanzu/developer-index.html) or follow the instructions included in the [Steeltoe Security samples](https://github.com/SteeltoeOSS/Samples/blob/main/Security/src/AuthWeb/README.md).

### UAA Server

Expand Down
2 changes: 1 addition & 1 deletion guides/get-to-know-steeltoe/exercise2.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Expose all the actuator endpoints for debugging and demonstration purposes in "a
```

> [!TIP]
> Enable Intellisense for Steeltoe settings within `appsettings.json` by adding a schema reference inside the JSON like this: `"$schema": "https://steeltoe.io/schema/latest/schema.json"`
> Enable Intellisense for Steeltoe settings within `appsettings.json` by adding a schema reference inside the JSON like this: `"$schema": "https://steeltoe.io/schema/v3/schema.json"`
## Run the application

Expand Down
4 changes: 2 additions & 2 deletions guides/service-discovery/consul.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Update `appsettings.json` with host, port and scheme as needed:

```json
{
"$schema": "https://steeltoe.io/schema/latest/schema.json",
"$schema": "https://steeltoe.io/schema/v3/schema.json",
"Consul": {
"Discovery": {
"HostName": "localhost",
Expand Down Expand Up @@ -166,7 +166,7 @@ Update the application's settings for Consul to prevent this application from re

```json
{
"$schema": "https://steeltoe.io/schema/latest/schema.json",
"$schema": "https://steeltoe.io/schema/v3/schema.json",
"Consul": {
"Discovery": {
"Register": false
Expand Down
Loading