Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: terraform-aws-modules/terraform-aws-step-functions
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.1.1
Choose a base ref
...
head repository: terraform-aws-modules/terraform-aws-step-functions
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.2.0
Choose a head ref
  • 2 commits
  • 3 files changed
  • 3 contributors

Commits on Mar 22, 2024

  1. feat: Add new output with state machine name (#63)

    Co-authored-by: Anton Babenko <[email protected]>
    gdowmont and antonbabenko authored Mar 22, 2024
    Copy the full SHA
    f421ef6 View commit details
  2. chore(release): version 4.2.0 [skip ci]

    ## [4.2.0](v4.1.1...v4.2.0) (2024-03-22)
    
    ### Features
    
    * Add new output with state machine name ([#63](#63)) ([f421ef6](f421ef6))
    semantic-release-bot committed Mar 22, 2024
    Copy the full SHA
    14d5135 View commit details
Showing with 13 additions and 0 deletions.
  1. +7 −0 CHANGELOG.md
  2. +1 −0 README.md
  3. +5 −0 outputs.tf
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@

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

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


### Features

* Add new output with state machine name ([#63](https://github.com/terraform-aws-modules/terraform-aws-step-functions/issues/63)) ([f421ef6](https://github.com/terraform-aws-modules/terraform-aws-step-functions/commit/f421ef6c6807c3bf3cd9ea90d895fb25844dd4ba))

## [4.1.1](https://github.com/terraform-aws-modules/terraform-aws-step-functions/compare/v4.1.0...v4.1.1) (2024-03-06)


1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -229,6 +229,7 @@ No modules.
| <a name="output_state_machine_arn"></a> [state\_machine\_arn](#output\_state\_machine\_arn) | The ARN of the Step Function |
| <a name="output_state_machine_creation_date"></a> [state\_machine\_creation\_date](#output\_state\_machine\_creation\_date) | The date the Step Function was created |
| <a name="output_state_machine_id"></a> [state\_machine\_id](#output\_state\_machine\_id) | The ARN of the Step Function |
| <a name="output_state_machine_name"></a> [state\_machine\_name](#output\_state\_machine\_name) | The Name of the Step Function |
| <a name="output_state_machine_status"></a> [state\_machine\_status](#output\_state\_machine\_status) | The current status of the Step Function |
| <a name="output_state_machine_version_arn"></a> [state\_machine\_version\_arn](#output\_state\_machine\_version\_arn) | The ARN of state machine version |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -9,6 +9,11 @@ output "state_machine_arn" {
value = try(aws_sfn_state_machine.this[0].arn, "")
}

output "state_machine_name" {
description = "The Name of the Step Function"
value = try(aws_sfn_state_machine.this[0].name, "")
}

output "state_machine_creation_date" {
description = "The date the Step Function was created"
value = try(aws_sfn_state_machine.this[0].creation_date, "")