Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename repo name #71

Merged
merged 1 commit into from
Dec 20, 2023
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ languages:
products:
- azure-spring-apps
description: "Sample projects for Azure Spring Apps"
urlFragment: "azure-spring-cloud-samples"
urlFragment: "azure-spring-apps-samples"
---

# Azure Spring Apps Samples
![Build](https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples/actions/workflows/build.yml/badge.svg) ![Check Markdown Links](https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples/actions/workflows/markdown-link-check.yml/badge.svg)
![Build](https://github.com/Azure-Samples/azure-spring-apps-samples/actions/workflows/build.yml/badge.svg) ![Check Markdown Links](https://github.com/Azure-Samples/azure-spring-apps-samples/actions/workflows/markdown-link-check.yml/badge.svg)


## Overview
Expand Down
4 changes: 2 additions & 2 deletions config-client-polling/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ This sample shows how to auto refresh config server changes by letting the confi
1. Clone this repo and go to folder

```bash
git clone https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples
cd Azure-Spring-Cloud-Samples/config-client-polling
git clone https://github.com/Azure-Samples/azure-spring-apps-samples
cd azure-spring-apps-samples/config-client-polling
```

1. Package the app using maven
Expand Down
4 changes: 2 additions & 2 deletions custom-config-server-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ As Config Server is a protected resource in Azure Spring Apps service, the clien

Clone the sample repository to your develop environment.
```bash
git clone https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples
cd Azure-Spring-Cloud-Samples/custom-config-server-client
git clone https://github.com/Azure-Samples/azure-spring-apps-samples
cd azure-spring-apps-samples/custom-config-server-client
```

## Provision your Azure Spring Apps instance
Expand Down
4 changes: 2 additions & 2 deletions custom-eureka-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ This sample shows how to access Azure Spring Apps managed Spring Cloud Service R
1. Clone this repo and go to folder

```bash
git clone https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples
cd Azure-Spring-Cloud-Samples/custom-eureka-client
git clone https://github.com/Azure-Samples/azure-spring-apps-samples
cd azure-spring-apps-samples/custom-eureka-client
```

1. Install Azure CLI extension for Azure Spring Apps
Expand Down
4 changes: 2 additions & 2 deletions hystrix-turbine-sample/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
Clone the sample repository to your develop environment. It is forked from [this repository](https://github.com/StackAbuse/spring-cloud/tree/master/spring-turbine), check out the original [blog](https://stackabuse.com/spring-cloud-turbine/) if you want to learn more.

```bash
git clone https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples.git
cd Azure-Spring-Cloud-Samples/hystrix-turbine-sample
git clone https://github.com/Azure-Samples/azure-spring-apps-samples.git
cd azure-spring-apps-samples/hystrix-turbine-sample
```

Build the 3 applications that will be used in this tutorial.
Expand Down
4 changes: 2 additions & 2 deletions java-8-sample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ This sample shows how to run Java 8 app in Azure Spring Apps.
1. Clone this repo and go to folder

```bash
git clone https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples
cd Azure-Spring-Cloud-Samples/java-8-sample
git clone https://github.com/Azure-Samples/azure-spring-apps-samples
cd azure-spring-apps-samples/java-8-sample
```

1. Package the app using maven
Expand Down
2 changes: 1 addition & 1 deletion managed-identity-keyvault/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This sample shows how to access Key Vault with managed identity in Azure Spring Apps.

You need include [ManagedIdentityCredentialBuilder](https://docs.microsoft.com/java/api/com.azure.identity.managedidentitycredentialbuilder?view=azure-java-stable) and [SecretClientBuilder](https://docs.microsoft.com/java/api/com.azure.security.keyvault.secrets.secretclientbuilder?view=azure-java-stable) in your code. In this sample project, you could refer to [MainController.java](https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples/blob/master/managed-identity-keyvault/src/main/java/com/microsoft/azure/MainController.java#L28).
You need include [ManagedIdentityCredentialBuilder](https://docs.microsoft.com/java/api/com.azure.identity.managedidentitycredentialbuilder?view=azure-java-stable) and [SecretClientBuilder](https://docs.microsoft.com/java/api/com.azure.security.keyvault.secrets.secretclientbuilder?view=azure-java-stable) in your code. In this sample project, you could refer to [MainController.java](https://github.com/Azure-Samples/azure-spring-apps-samples/blob/main/managed-identity-keyvault/src/main/java/com/microsoft/azure/MainController.java#L28).

## Prerequisite

Expand Down
2 changes: 1 addition & 1 deletion managed-identity-storage-blob/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This sample shows how to access Storage Blob with managed identity in Azure Spring Apps.

You need include [ManagedIdentityCredentialBuilder](https://docs.microsoft.com/java/api/com.azure.identity.managedidentitycredentialbuilder?view=azure-java-stable) and [BlobServiceClientBuilder](https://docs.microsoft.com/java/api/com.azure.storage.blob.blobserviceclientbuilder?view=azure-java-stable) in your code. In this sample project, you could refer to [MainController.java](https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples/blob/master/managed-identity-storage-blob/src/main/java/com/microsoft/azure/MainController.java#L37).
You need include [ManagedIdentityCredentialBuilder](https://docs.microsoft.com/java/api/com.azure.identity.managedidentitycredentialbuilder?view=azure-java-stable) and [BlobServiceClientBuilder](https://docs.microsoft.com/java/api/com.azure.storage.blob.blobserviceclientbuilder?view=azure-java-stable) in your code. In this sample project, you could refer to [MainController.java](https://github.com/Azure-Samples/azure-spring-apps-samples/blob/main/managed-identity-storage-blob/src/main/java/com/microsoft/azure/MainController.java#L37).

## Prerequisite

Expand Down