Skip to content

Commit

Permalink
remove double assignment of ClientAffinityEnabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksymilian Boguń committed Jun 27, 2019
1 parent e1fc66c commit f03f052
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions azurerm/resource_arm_app_service_slot.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,11 +197,10 @@ func resourceArmAppServiceSlotCreateUpdate(d *schema.ResourceData, meta interfac
Location: &location,
Tags: expandTags(tags),
SiteProperties: &web.SiteProperties{
ServerFarmID: utils.String(appServicePlanId),
Enabled: utils.Bool(enabled),
HTTPSOnly: utils.Bool(httpsOnly),
SiteConfig: &siteConfig,
ClientAffinityEnabled: &affinity,
ServerFarmID: utils.String(appServicePlanId),
Enabled: utils.Bool(enabled),
HTTPSOnly: utils.Bool(httpsOnly),
SiteConfig: &siteConfig,
},
}

Expand Down

0 comments on commit f03f052

Please sign in to comment.