Serverless Enterprise

I recently updated to v1.44.0 and used the @serverless/enterprise-plugin and am now unable to deploy. I’m simply trying to create a User Pool, but keep getting an error.

An error occurred: EnterpriseLogAccessIamRole - Policy statement must contain resources. (Service: AmazonIdentityManagement; Status Code: 400; Error Code: MalformedPolicyDocument; Request ID: dc158686-378c-4d01-97fb-1414d55a735d)

My serverless.yml

tenant: [omitted]
app: [omitted]

service: auth

frameworkVersion: ">=1.44.0"

plugins:
  - '@serverless/enterprise-plugin'

provider:
  name: aws
  runtime: nodejs8.10
  region: us-east-1

custom:
  stage: ${opt:stage, self:provider.stage}
  cognito:
    app:
      userPool: ${self:service}-app-user-pool-${self:custom.stage}
      identityPool: AppIdentityPoolDev

resources:
  Resources:
    AppUserPool:
      Type: AWS::Cognito::UserPool
      Properties:
        UserPoolName: ${self:custom.cognito.app.userPool}
        UsernameAttributes:
          - email
        AutoVerifiedAttributes:
          - email
    MobileAppClient:
      Type: AWS::Cognito::UserPoolClient
      Properties:
        ClientName: ${self:service}-mobile-app-client-${self:custom.stage}
        UserPoolId:
          Ref: AppUserPool
        GenerateSecret: true

  Outputs:
    AppUserPool:
      Value:
        Ref: AppUserPool
    MobileAppClient:
      Value:
        Ref: MobileAppClient