Skip to content

Commit 23e4e9e

Browse files
committed
hotfix stage.upper()
1 parent 217bb15 commit 23e4e9e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

iac/stack/iac_stack.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ def __init__(
5858
)
5959

6060
ENVIRONMENT_VARIABLES = {
61-
"STAGE": stage,
61+
# stage aqui precisa ser upper por causa do enum no environments.py
62+
"STAGE": stage.upper(),
6263
"DYNAMO_TABLE_NAME": self.dynamo_construct.table.table_name,
6364
"DYNAMO_PARTITION_KEY": "PK",
6465
"DYNAMO_SORT_KEY": "SK",

0 commit comments

Comments
 (0)