diff --git a/api/v4/security/jwt-bearer.md b/api/v4/security/jwt-bearer.md index 3b2a512d..228cfd50 100644 --- a/api/v4/security/jwt-bearer.md +++ b/api/v4/security/jwt-bearer.md @@ -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 diff --git a/guides/get-to-know-steeltoe/exercise2.md b/guides/get-to-know-steeltoe/exercise2.md index 6d2ecd37..f818f79e 100644 --- a/guides/get-to-know-steeltoe/exercise2.md +++ b/guides/get-to-know-steeltoe/exercise2.md @@ -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 diff --git a/guides/service-discovery/consul.md b/guides/service-discovery/consul.md index d8fbf8ea..6d549056 100644 --- a/guides/service-discovery/consul.md +++ b/guides/service-discovery/consul.md @@ -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", @@ -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