We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecdb806 commit d20505eCopy full SHA for d20505e
src/Websites/Websites/help/Set-AzWebApp.md
@@ -62,6 +62,16 @@ Modifies an Azure Web App. (autogenerated)
62
Set-AzWebApp -AppSettings <Hashtable> -Name 'ContosoWebApp' -ResourceGroupName 'Default-Web-WestUS'
63
```
64
65
+### Example 4
66
+
67
+The following example creates a connection string named myConnectionString for Web App
68
+ContosoWebApp. This replaces all existing connection strings for Web App ContosoWebApp.
69
70
+```powershell
71
+$hashtable = @{myConnectionString = @{Type='MySql';Value='MySql Connection string'}}
72
+Set-AzWebApp -Name 'ContosoWebApp' -ResourceGroupName 'Default-Web-WestUS' -ConnectionString $hashtable
73
+```
74
75
## PARAMETERS
76
77
### -AlwaysOn
0 commit comments