Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* Fix the IAM action to `stepfunction_Sync` to assign the `states:StartExecution` action if step function
  is not `EXPRESS`
  • Loading branch information
terrysiu-pm committed Sep 3, 2024
1 parent 14d5135 commit adec645
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file.

## [4.2.1](https://github.com/terraform-aws-modules/terraform-aws-step-functions/compare/v4.2.0...v4.2.1) (2024-09-03)


### Bug Fixes
* Update the `stepfunction_Sync` action to be set as `states:StartExecution` if the step function is a `STANDARD` worfklow
([#65](https://github.com/terraform-aws-modules/terraform-aws-step-functions/issues/65))


## [4.2.0](https://github.com/terraform-aws-modules/terraform-aws-step-functions/compare/v4.1.1...v4.2.0) (2024-03-22)


Expand Down
2 changes: 1 addition & 1 deletion locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ locals {
stepfunction_Sync = {
stepfunction = {
actions = [
"states:StartSyncExecution"
var.type == "EXPRESS" ? "states:StartSyncExecution" : "states:StartExecution"
]
}

Expand Down

0 comments on commit adec645

Please sign in to comment.