步骤如何在AWS量表中发挥作用?

发布于 2025-01-22 10:31:55 字数 381 浏览 0 评论 0原文

尝试AWS步骤函数(下面的示例代码),如果将其连接到某个事件(例如S3对象通知),则创建的每个对象都会像Lambda实例一样旋转新的状态计算机/步骤函数。

data "template_file" "stepFunc" {
  template = file("step-func-definition.json")
}

resource "aws_sfn_state_machine" "sfn_state_machine" {
   name = "a-step-function"
   role_arn = aws_iam_role.step_function_role.arn
   definition = data.template_file.stepFunc.rendered
}

experimenting with aws step functions ( sample code below), if this is hooked up to a certain event, say s3 object notification , for each object created will it spin up a new state machine/step function like a lambda instance.

data "template_file" "stepFunc" {
  template = file("step-func-definition.json")
}

resource "aws_sfn_state_machine" "sfn_state_machine" {
   name = "a-step-function"
   role_arn = aws_iam_role.step_function_role.arn
   definition = data.template_file.stepFunc.rendered
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文