generated from pamelafox/python-3.10-playground
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
58 additions
and
286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
metadata description = 'Updates app settings for an Azure App Service.' | ||
@description('The name of the app service resource within the current resource group scope') | ||
param name string | ||
|
||
@description('The app settings to be applied to the app service') | ||
@secure() | ||
param appSettings object | ||
|
||
resource appService 'Microsoft.Web/sites@2022-03-01' existing = { | ||
name: name | ||
} | ||
|
||
resource settings 'Microsoft.Web/sites/config@2022-03-01' = { | ||
name: 'appsettings' | ||
parent: appService | ||
properties: appSettings | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.