Skip to content

Commit 4f3690b

Browse files
committed
Change the description the endpoint and add the part called Provision an instance of Azure Spring Cloud before Deployment
1 parent 4200b53 commit 4f3690b

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

articles/spring-cloud/how-to-maven-deploy-apps.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,34 @@ mvn clean package -DskipTests -Denv=cloud
7272

7373
Compiling the project takes several minutes. After it's completed, you should have individual JAR files for each service in their respective folders.
7474

75+
## Provision an instance of Azure Spring Cloud
76+
77+
The following procedure creates an instance of Azure Spring Cloud using the Azure portal.
78+
79+
1. In a new tab, open the [Azure portal](https://portal.azure.com/).
80+
81+
2. From the top search box, search for **Azure Spring Cloud**.
82+
83+
3. Select **Azure Spring Cloud** from the results.
84+
85+
![ASC icon start](media/spring-cloud-quickstart-launch-app-portal/find-spring-cloud-start.png)
86+
87+
4. On the Azure Spring Cloud page, select **Create**.
88+
89+
![ASC icon add](media/spring-cloud-quickstart-launch-app-portal/spring-cloud-create.png)
90+
91+
5. Fill out the form on the Azure Spring Cloud **Create** page. Consider the following guidelines:
92+
93+
- **Subscription**: Select the subscription you want to be billed for this resource.
94+
- **Resource group**: Creating new resource groups for new resources is a best practice. You will use this resource group in later steps as **\<resource group name\>**.
95+
- **Service Details/Name**: Specify the **\<service instance name\>**. The name must be between 4 and 32 characters long and can contain only lowercase letters, numbers, and hyphens. The first character of the service name must be a letter and the last character must be either a letter or a number.
96+
- **Location**: Select the region for your service instance.
97+
98+
![ASC portal start](media/spring-cloud-quickstart-launch-app-portal/portal-start.png)
99+
100+
6. Select **Review and create**.
101+
102+
75103
## Generate configurations and deploy to the Azure Spring Cloud
76104

77105
To generate configurations and deploy the app, follow these steps:
@@ -87,7 +115,7 @@ To generate configurations and deploy the app, follow these steps:
87115
* **Subscription ID** - the subscription you used to create an Azure Spring Cloud instance.
88116
* **Service instance** - the name of your Azure Spring Cloud instance.
89117
* **App name** - an app name of your choice, or use the default value `artifactId`.
90-
* **Public endpoint** - whether or not to expose the public access to this app.
118+
* **Public endpoint** - true to expose the app to public access; otherwise, false.
91119

92120
1. Verify that the `appName` element in the POM file has the correct value. The relevant portion of the POM file should look similar to the following example.
93121

0 commit comments

Comments
 (0)