8000
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 ee27d16 commit ba4ee37Copy full SHA for ba4ee37
localstack/services/cloudformation/models/route53.py
@@ -38,9 +38,9 @@ def param_change_batch(params, **kwargs):
38
"HealthCheckId",
39
]
40
attrs = select_attributes(params, attr_names)
41
-
42
- if isinstance(attrs["TTL"], str):
43
- attrs["TTL"] = int(attrs["TTL"])
+ if "TTL" in attrs:
+ if isinstance(attrs["TTL"], str):
+ attrs["TTL"] = int(attrs["TTL"])
44
45
alias_target = attrs.get("AliasTarget", {})
46
alias_target["EvaluateTargetHealth"] = alias_target.get("EvaluateTargetHealth", False)
0 commit comments