AWS Step Functions Terraform module
Terraform module, which creates AWS Step Functions as well as required IAM role and IAM policies for Integrated Services.
This Terraform module is the part of serverless.tf framework, which aims to simplify all operations when working with the serverless in Terraform.
Features
- Creates AWS Step Function
- Conditional creation for many types of resources
- Support IAM policy attachments for Integrated Services (eg, Lambda, SQS, ECS, EKS, Batch, DynamoDB, etc) and various ways to create and attach additional policies
Usage
Step Function
module "step_function" {
source = "terraform-aws-modules/step-functions/aws"
name = "my-step-function"
definition = <<EOF
{
"Comment": "A Hello World example of the Amazon States Language using Pass states",
"StartAt": "Hello",
"States": {
"Hello": {
"Type": "Pass",
"Result": "Hello",
"Next": "World"
},
"World": {
"Type": "Pass",
"Result": "World",
"End": true
}
}
}
EOF
service_integrations = {
dynamodb = {
dynamodb = ["arn:aws:dynamodb:eu-west-1:052212379155:table/Test"]
}
lambda = {
lambda = ["arn:aws:lambda:eu-west-1:123456789012:function:test1", "arn:aws:lambda:eu-west-1:123456789012:function:test2"]
}
stepfunction_Sync = {
stepfunction = ["arn:aws:states:eu-west-1:123456789012:stateMachine:test1"]
stepfunction_Wildcard = ["arn:aws:states:eu-west-1:123456789012:stateMachine:test1"]
# Set to true to use the default events (otherwise, set this to a list of ARNs; see the docs linked in locals.tf
# for more information). Without events permissions, you will get an error similar to this:
# Error: AccessDeniedException: 'arn:aws:iam::xxxx:role/step-functions-role' is not authorized to
# create managed-rule
events = true
}
}
type = "STANDARD"
tags = {
Module = "my"
}
}
Service integration policies
There are predefined policies for all available integrations (see aws_service_policies in locals.tf for values) which can be used as a key inside service_integrations argument.
Each key of aws_service_policies contains configuration for the IAM policy statements which will be combined with the values specified in service_integrations argument.
Example of service_integrations arguments:
module "step_function" {
source = "terraform-aws-modules/step-functions/aws"
# ... omitted
service_integrations = {
xray = {
xray = true # the value of default_resources key will be used when key value is `true`
}
sqs = {
sqs = ["arn:aws:sqs:..."] # sqs queue ARN is required because there is no default_resources key for such integration
}
# Special case to deny all actions for the step function (this will override all IAM policies allowed for the function)
no_tasks = {
deny_all = true
}
}
}
Additional IAM policies for Step Function
In addition to all supported AWS service integrations you may want to create and attach additional policies.
There are 5 supported ways to attach additional IAM policies to IAM role used by Step Function:
policy_json- JSON string or heredoc, whenattach_policy_json = true.policy_jsons- List of JSON strings or heredoc, whenattach_policy_jsons = trueandnumber_of_policy_jsons > 0.policy- ARN of existing IAM policy, whenattach_policy = true.policies- List of ARNs of existing IAM policies, whenattach_policies = trueandnumber_of_policies > 0.policy_statements- Map of maps to define IAM statements which will be generated as IAM policy. Requiresattach_policy_statements = true. Seeexamples/completefor more information.
Conditional creation
Sometimes you need to have a way to create resources conditionally, so the solution is to specify create arguments.
module "step_function" {
source = "terraform-aws-modules/step-functions/aws"
create = false # to disable all resources
create_role = false # to control creation of the IAM role and policies required for Step Function
# ... omitted
}
Examples
- Complete - Create Step Function and required IAM resources in various combinations with all supported features.
Authors
Module managed by Anton Babenko. Check out serverless.tf to learn more about doing serverless with Terraform.
Please reach out to Betajob if you are looking for commercial support for your Terraform, AWS, or serverless project.
License
Apache 2 Licensed. See LICENSE for full details.