Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliocalzolari committed Dec 12, 2017
1 parent 7f59aeb commit 392230e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ provider:
Action:
- "es:*"
Resource: "arn:aws:es:eu-west-1:123456789012:domain/es-demo/*"
# you must psecify the full ARN
# you must specify the full ARN of the AWS ES Domain



functions:
es-cleanup-lambda:
handler: es-cleanup.lambda_handler
name: es-cleanup-lambda
description: ES old index removal
runtime: python2.7
handler: es-cleanup.lambda_handler
name: es-cleanup-lambda
description: ES old index removal
runtime: python2.7
memorySize: "128"
timeout: 180
timeout: 180
package:
exclude:
- ./**
Expand All @@ -42,4 +42,4 @@ functions:
- CONTRIBUTING.md
events:
# Invoke Lambda function every night at 01.00 AM
- schedule: cron(0 1 * * ? *)
- schedule: cron(0 1 * * ? *)

0 comments on commit 392230e

Please sign in to comment.