web-dev-qa-db-ja.com

cloudformationを介したAWS Lambdaスケジュール済みイベントソース

私はすでにcloudformationで定義されたラムダ/ロールを持っていますが、スケジュールされたイベントソースを追加するためにもそれを使用したいです...ドキュメントや例はありますか?

29
grosser

Aws :: Event :: RuleScheduleExpressionおよびAWS::Lambda::Permissionを使用します

// rule to periodically call the lambda
"TagWatcherRule": {
  "Type": "AWS::Events::Rule",
  "Properties": {
    "ScheduleExpression": "rate(10 minutes)",
    "Targets": [
      {
        "Id": "TagWatcherScheduler",
        "Arn": {
          "Fn::GetAtt": [
            "TagWatcherFunction",
            "Arn"
          ]
        }
      }
    ]
  }
},
// role may call the lambda
"InvokeLambdaPermission": {
  "Type": "AWS::Lambda::Permission",
  "Properties": {
    "FunctionName": {
      "Fn::GetAtt": [
        "TagWatcherFunction",
        "Arn"
      ]
    },
    "Action": "lambda:InvokeFunction",
    "Principal": "events.amazonaws.com",
    "SourceArn": {
      "Fn::GetAtt": [
        "TagWatcherRule",
        "Arn"
      ]
    }
  }
}
31
grosser

残念ながら、ラムダ関数のスケジュールされたイベントソースの構成は、現在CloudFormationでサポートされていません。 CloudFormationを使用してラムダをデプロイし、スケジュールされたイベントを手動で構成する必要があります。

CloudFormationはAWS::Lambda::EventSourceMappingリソースタイプをサポートします。ただし、このリソースはKinesisまたはDynamoDBストリームの構成に制限があるため、これは役に立たない可能性があります。

http://docs.aws.Amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html


**更新-2016年4月現在、これはCloudWatchイベントを使用してサポートされています- https://aws.Amazon.com/about-aws/whats-new/2016/04/Amazon-cloudwatch-events-now -supported-in-aws-cloudformation-templates /

9
Jason

同じ問題を解決しました。

"RoleForLambdaStopEC2Instances" : {
  "Type": "AWS::IAM::Role",
  "Properties": {
    "AssumeRolePolicyDocument": {
      "Version": "2012-10-17",
      "Statement": [
        {
          "Sid": "",
          "Effect": "Allow",
          "Principal": {
            "Service": "lambda.amazonaws.com"
          },
          "Action": "sts:AssumeRole"
        }
      ]
    },
    "Policies": [
      {
        "PolicyName": "LambdaStopEC2InstancesPolicy",
        "PolicyDocument": {
          "Version": "2012-10-17",
          "Statement": [
            {
              "Effect": "Allow",
              "Action": [
                "logs:CreateLogGroup",
                "logs:CreateLogStream",
                "logs:PutLogEvents",
                "ec2:StopInstances"
              ],
              "Resource": [
                "arn:aws:logs:*:*:*",
                "arn:aws:ec2:*"
              ]
            }
          ]
        }
      }
    ],
    "Path": "/"
  }
},
"LambdaStopEC2Instances": {
  "Type": "AWS::Lambda::Function",
  "Properties": {
    "Code": {
      "S3Bucket": "XXXXXXXXXXXXXXXXX",
      "S3Key": "XXXXXXXXXXXXXXXXXX"
    },
    "Handler": "stopEC2Instances.handler",
    "Role": { "Fn::GetAtt" : ["RoleForLambdaStopEC2Instances", "Arn"] },
    "Runtime": "nodejs4.3",
    "Timeout": "5"
  }
},
"StopEC2InstancesRule": {
  "Type" : "AWS::Events::Rule",
  "Properties" : {
    "Name" : "StopEC2Instances",
    "ScheduleExpression" : "cron(0 13 ? * MON-FRI *)",
    "State": "ENABLED",
    "Targets": [{
      "Arn": { "Fn::GetAtt": ["LambdaStopEC2Instances", "Arn"] },
      "Id": "stopEC2Instances"
    }]
  }
},
"LambdaInvokePermission": {
  "Type": "AWS::Lambda::Permission",
  "Properties": {
    "FunctionName" : { "Fn::GetAtt" : ["LambdaStopEC2Instances", "Arn"] },
    "Action": "lambda:InvokeFunction",
    "Principal": "events.amazonaws.com",
    "SourceAccount": { "Ref" : "AWS::AccountId" },
    "SourceArn": { "Fn::GetAtt": ["StopEC2InstancesRule","Arn"] }
  }
}
8
keiwt

今週(2016年4月18日)から、Lambda関数をトリガーするスケジュールされたCloudWatchイベントルールを追加できるようになりました。

AWS :: Event :: Rule には、cronスタイルのスケジュール用のScheduleExpressionフィールドと、Lambda関数ARNを受け入れることができるTargets配列があります。

4
kiwidrew

AWSはsourcedetailsによる定期的な実行をサポートしています

 EventSource: "aws.config"
 MaximumExecutionFrequency: Twelve_Hours
 MessageType: "ScheduledNotification"
1
Ripon Banik