Skip to content

Commit 9af7b6f

Browse files
committed
2 parents c62fecd + b84b7d9 commit 9af7b6f

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

tibanna/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Version information."""
22

33
# The following line *must* be the last in the module, exactly as formatted:
4-
__version__ = "1.2.7"
4+
__version__ = "1.2.8"

tibanna/stepfunction_cost_updater.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
from .vars import AWS_REGION, AWS_ACCOUNT_NUMBER, SFN_TYPE
1+
from .vars import (
2+
AWS_REGION,
3+
AWS_ACCOUNT_NUMBER,
4+
SFN_TYPE,
5+
UPDATE_COST_LAMBDA_NAME
6+
)
27

38

49
class StepFunctionCostUpdater(object):
@@ -65,7 +70,7 @@ def sfn_state_defs(self):
6570
},
6671
"UpdateCostAwsem": {
6772
"Type": "Task",
68-
"Resource": self.lambda_arn_prefix + "update_cost_awsem" + self.lambda_suffix,
73+
"Resource": self.lambda_arn_prefix + UPDATE_COST_LAMBDA_NAME + self.lambda_suffix,
6974
"ResultPath": "$.done",
7075
"Next": "UpdateCostDone"
7176
},

0 commit comments

Comments
 (0)