diff --git a/internal/provider/resource_flow.go b/internal/provider/resource_flow.go index dd54a28..ac98d09 100644 --- a/internal/provider/resource_flow.go +++ b/internal/provider/resource_flow.go @@ -91,6 +91,7 @@ func resourceFlowSchemaToModel(d *schema.ResourceData) *api.FlowRequest { Authentication: api.AuthenticationEnum(d.Get("authentication").(string)).Ptr(), PolicyEngineMode: api.PolicyEngineMode(d.Get("policy_engine_mode").(string)).Ptr(), Layout: api.FlowLayoutEnum(d.Get("layout").(string)).Ptr(), + Background: d.Get("background").(string), DeniedAction: api.DeniedActionEnum(d.Get("denied_action").(string)).Ptr(), } return &m