Skip to content
Open
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
5 changes: 5 additions & 0 deletions internal/services/logic/logic_app_standard_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -804,6 +804,11 @@ func (r LogicAppResource) Update() sdk.ResourceFunc {
existingSiteConfig := sc.Model.Properties
siteEnvelope.SiteConfig = existingSiteConfig

// The `AzureStorageAccounts` received does not contain `endpoint`, which is required in some cases.
// Since the rest API specs do not contain this property, we remove it from the payload.
// Tracked by https://github.com/Azure/azure-rest-api-specs/issues/40128
siteEnvelope.SiteConfig.AzureStorageAccounts = nil
Comment thread
ziyeqf marked this conversation as resolved.

appSettingsResp, err := client.ListApplicationSettings(ctx, *id)
if err != nil || appSettingsResp.Model == nil {
return fmt.Errorf("reading App Settings for Linux %s: %+v", id, err)
Expand Down
Loading