Skip to content

Commit

Permalink
Merge pull request #24633 from hashicorp/b/servieplan-functionapp-dep…
Browse files Browse the repository at this point in the history
…recated-bug

`web` - fix regression in service plan processing
  • Loading branch information
tombuildsstuff authored Jan 25, 2024
2 parents 146050e + aa270e1 commit 6dbaa2a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/services/web/function_app_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,8 @@ func resourceFunctionAppRead(d *pluginsdk.ResourceData, meta interface{}) error
if err != nil {
return err
}
d.Set("app_service_plan_id", servicePlan.ID())
appServicePlanID = servicePlan.ID()
d.Set("app_service_plan_id", appServicePlanID)
d.Set("enabled", props.Enabled)
d.Set("default_hostname", props.DefaultHostName)
d.Set("https_only", props.HTTPSOnly)
Expand Down

0 comments on commit 6dbaa2a

Please sign in to comment.