diff --git a/azurerm/resource_arm_app_service_slot.go b/azurerm/resource_arm_app_service_slot.go index 440d5877191b..2d1df0805a27 100644 --- a/azurerm/resource_arm_app_service_slot.go +++ b/azurerm/resource_arm_app_service_slot.go @@ -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, }, }