Skip to content

Commit 17bea25

Browse files
authored
Merge pull request #188634 from v-kevinmic3/feature11940445
Update how-to-deploy-powershell.md
2 parents 8365471 + 8dbef81 commit 17bea25

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

articles/spring-cloud/how-to-deploy-powershell.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
2-
title: How to deploy Azure Spring Cloud with Azure PowerShell
3-
description: How to deploy Azure Spring Cloud with Azure PowerShell
2+
title: Create and deploy applications in Azure Spring Cloud using PowerShell
3+
description: How to create and deploy applications in Azure Spring Cloud using PowerShell
44
author: karlerickson
55
ms.author: karler
66
ms.topic: conceptual
77
ms.service: spring-cloud
88
ms.devlang: azurepowershell
9-
ms.date: 11/16/2020
9+
ms.date: 2/15/2022
1010
ms.custom: devx-track-azurepowershell
1111
---
1212

13-
# Deploy Azure Spring Cloud with Azure PowerShell
13+
# Create and deploy applications using PowerShell
1414

15-
This article describes how you can create an instance of Azure Spring Cloud using the
15+
This article describes how you can create and deploy an app in Azure Spring Cloud using the
1616
[Az.SpringCloud](/powershell/module/Az.SpringCloud) PowerShell module.
1717

1818
## Requirements
@@ -23,9 +23,9 @@ before you begin.
2323
[!INCLUDE [azure-powershell-requirements-no-header.md](../../includes/azure-powershell-requirements-no-header.md)]
2424

2525
> [!IMPORTANT]
26-
> While the **Az.SpringCloud** PowerShell module is in preview, you must install it separately using
26+
> While the **Az.SpringCloud** PowerShell module is in preview, you must install it using
2727
> the `Install-Module` cmdlet. After this PowerShell module becomes generally available, it will be
28-
> part of future Az PowerShell module releases and available by default from within Azure Cloud
28+
> part of future Az PowerShell releases and available by default from within Azure Cloud
2929
> Shell.
3030
3131
```azurepowershell-interactive
@@ -64,21 +64,21 @@ resource group.
6464
New-AzSpringCloud -ResourceGroupName <resource group name> -name <service instance name> -Location eastus
6565
```
6666

67-
## Create a new Azure Spring Cloud app
67+
## Create a new application in Azure Spring Cloud
6868

6969
To create a new App, you use the
7070
[New-AzSpringCloudApp](/powershell/module/az.springcloud/new-azspringcloudapp) cmdlet. The following
71-
example creates an Azure Spring Cloud app named `gateway`.
71+
example creates an app in Azure Spring Cloud named `gateway`.
7272

7373
```azurepowershell-interactive
7474
New-AzSpringCloudApp -ResourceGroupName <resource group name> -ServiceName <service instance name> -AppName gateway
7575
```
7676

77-
## Create a new Azure Spring Cloud deployment
77+
## Create a new app deployment in Azure Spring Cloud
7878

79-
To create a new Deployment, you use the
79+
To create a new app Deployment, you use the
8080
[New-AzSpringCloudAppDeployment](/powershell/module/az.springcloud/new-azspringcloudappdeployment)
81-
cmdlet. The following example creates an Azure Spring Cloud deployment named `default` for the
81+
cmdlet. The following example creates an app deployment in Azure Spring Cloud named `default` for the
8282
`gateway` app.
8383

8484
```azurepowershell-interactive
@@ -95,19 +95,19 @@ example retrieves information about the specified Azure Spring Cloud service.
9595
Get-AzSpringCloud -ResourceGroupName <resource group name> -ServiceName <service instance name>
9696
```
9797

98-
## Get an Azure Spring Cloud app
98+
## Get an application in Azure Spring Cloud
9999

100-
To get an Azure Spring Cloud app and its properties, you use the
100+
To get an app and its properties in Azure Spring Cloud, you use the
101101
[Get-AzSpringCloudApp](/powershell/module/az.springcloud/get-azspringcloudapp) cmdlet. The following
102-
example retrieves information about the `gateway` Spring Cloud app.
102+
example retrieves information about the app `gateway`.
103103

104104
```azurepowershell-interactive
105105
Get-AzSpringCloudApp -ResourceGroupName <resource group name> -ServiceName <service instance name> -AppName gateway
106106
```
107107

108-
## Get an Azure Spring Cloud deployment
108+
## Get an app deployment in Azure Spring Cloud
109109

110-
To get an Azure Spring Cloud deployment and its properties, you use the
110+
To get an app deployment and its properties in Azure Spring Cloud, you use the
111111
[Get-AzSpringCloudAppDeployment](/powershell/module/az.springcloud/get-azspringcloudappdeployment)
112112
cmdlet. The following example retrieves information about the `default` Spring Cloud deployment.
113113

@@ -120,20 +120,20 @@ Get-AzSpringCloudAppDeployment -ResourceGroupName <resource group name> -Service
120120
If the resources created in this article aren't needed, you can delete them by running the following
121121
examples.
122122

123-
### Delete an Azure Spring Cloud deployment
123+
### Delete an app deployment in Azure Spring Cloud
124124

125-
To remove an Azure Spring Cloud deployment, you use the
125+
To remove an app deployment in Azure Spring Cloud, you use the
126126
[Remove-AzSpringCloudAppDeployment](/powershell/module/az.springcloud/remove-azspringcloudappdeployment)
127-
cmdlet. The following example deletes an Azure Spring Cloud app deployment named `default` for the
127+
cmdlet. The following example deletes an app deployed in Azure Spring Cloud named `default` for the
128128
specified service and app.
129129

130130
```azurepowershell-interactive
131131
Remove-AzSpringCloudAppDeployment -ResourceGroupName <resource group name> -ServiceName <service instance name> -AppName gateway -DeploymentName default
132132
```
133133

134-
### Delete an Azure Spring Cloud app
134+
### Delete an app in Azure Spring Cloud
135135

136-
To remove a Spring Cloud app, you use the
136+
To remove an app in Azure Spring Cloud, you use the
137137
[Remove-AzSpringCloudApp](/powershell/module/Az.SpringCloud/remove-azspringcloudapp) cmdlet. The
138138
following example deletes the `gateway` app in the specified service and resource group.
139139

0 commit comments

Comments
 (0)