10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6d2d07 commit eb9600fCopy full SHA for eb9600f
localstack-core/localstack/services/cloudformation/engine/template_deployer.py
@@ -758,6 +758,10 @@ def resolve_placeholders_in_string(
758
"""
759
760
def _validate_result_type(value: str):
761
+ is_another_account_id = value.isdigit() and len(value) == len(account_id)
762
+ if value == account_id or is_another_account_id:
763
+ return value
764
+
765
if value.isdigit():
766
return int(value)
767
else:
0 commit comments