Unable to deploy event (Kinesis Stream)

hi guys, I’m trying to deploy, with version 1.0.2, a function subscribed to a Kinesis stream as stated in the docs. However, even though the function gets deployed correctly, the event is not created
My serverless.yml (or at least the part affected) looks like this

functions:
  saveEvents:
    handler: src/index.handler
    events:
      - stream:
        arn:
          Fn::GetAtt:
            - EventsStream
            - Arn
        enabled: true

resources:
 Resources:
  EventsStream:
    Type: AWS::Kinesis::Stream
    Properties:
      ShardCount: 1

am I missing something?

Your indentation is not correct. The arn: (and below) should move 2 spaces to the right. It does deploy, but there’s no event. Unfortunately when you correct the indentation you will be affected by this bug: https://github.com/serverless/serverless/issues/2365
I have verified this with 1.0.3.