|
1 | 1 | # State Machine |
2 | | -output "this_state_machine_id" { |
| 2 | +output "state_machine_id" { |
3 | 3 | description = "The ARN of the State Machine" |
4 | | - value = module.step_function.this_state_machine_id |
| 4 | + value = module.step_function.state_machine_id |
5 | 5 | } |
6 | 6 |
|
7 | | -output "this_state_machine_arn" { |
| 7 | +output "state_machine_arn" { |
8 | 8 | description = "The ARN of the State Machine" |
9 | | - value = module.step_function.this_state_machine_arn |
| 9 | + value = module.step_function.state_machine_arn |
10 | 10 | } |
11 | 11 |
|
12 | | -output "this_state_machine_creation_date" { |
| 12 | +output "state_machine_creation_date" { |
13 | 13 | description = "The date the State Machine was created" |
14 | | - value = module.step_function.this_state_machine_creation_date |
| 14 | + value = module.step_function.state_machine_creation_date |
15 | 15 | } |
16 | 16 |
|
17 | | -output "this_state_machine_status" { |
| 17 | +output "state_machine_status" { |
18 | 18 | description = "The current status of the State Machine" |
19 | | - value = module.step_function.this_state_machine_status |
| 19 | + value = module.step_function.state_machine_status |
20 | 20 | } |
21 | 21 |
|
22 | 22 | # IAM Role |
23 | | -output "this_role_arn" { |
| 23 | +output "role_arn" { |
24 | 24 | description = "The ARN of the IAM role created for the State Machine" |
25 | | - value = module.step_function.this_role_arn |
| 25 | + value = module.step_function.role_arn |
26 | 26 | } |
27 | 27 |
|
28 | | -output "this_role_name" { |
| 28 | +output "role_name" { |
29 | 29 | description = "The name of the IAM role created for the State Machine" |
30 | | - value = module.step_function.this_role_name |
| 30 | + value = module.step_function.role_name |
31 | 31 | } |
0 commit comments