We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 217bb15 commit 23e4e9eCopy full SHA for 23e4e9e
1 file changed
iac/stack/iac_stack.py
@@ -58,7 +58,8 @@ def __init__(
58
)
59
60
ENVIRONMENT_VARIABLES = {
61
- "STAGE": stage,
+ # stage aqui precisa ser upper por causa do enum no environments.py
62
+ "STAGE": stage.upper(),
63
"DYNAMO_TABLE_NAME": self.dynamo_construct.table.table_name,
64
"DYNAMO_PARTITION_KEY": "PK",
65
"DYNAMO_SORT_KEY": "SK",
0 commit comments