forked from ansible-collections/community.aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added state_machine_arn when unchanged. (ansible-collections#302)
* Added state_machine_arn when unchanged. * Add integration test * changelog * Shorten role/function names in integration tests Co-authored-by: Mark Chappell <[email protected]>
- Loading branch information
1 parent
6c1626e
commit 528bdb5
Showing
4 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
changelogs/302-aws_step_functions_state_machine-ARN-not-change.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
minor_changes: | ||
- state_machine_arn - return ``state_machine_arn`` when state is unchanged (https://github.com/ansible-collections/community.aws/pull/302). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
tests/integration/targets/aws_step_functions_state_machine/defaults/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# the random_num is generated in a set_fact task at the start of the testsuite | ||
state_machine_name: "{{ resource_prefix }}_step_functions_state_machine_ansible_test_{{ random_num }}" | ||
step_functions_role_name: "ansible-test-sts-{{ resource_prefix }}-step_functions-role" | ||
state_machine_name: "{{ resource_prefix }}_step_function_{{ random_num }}" | ||
step_functions_role_name: "ansible-test-{{ resource_prefix }}-step-function" | ||
execution_name: "{{ resource_prefix }}_sfn_execution" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters