Fix YAML indentation in LOWER parsing step
Some checks failed
Deploy Hello Lambda CFT / deploy (push) Failing after 15s

This commit is contained in:
Vijaya Krishna Manne 2026-05-29 14:17:47 -04:00
parent 0ecf2aa879
commit 96ab9d7e97

View file

@ -108,11 +108,11 @@ jobs:
continue continue
v = parsed.get(k) v = parsed.get(k)
if v: if v:
f.write(f"{k}={v}\n") f.write(f"{k}={v}\\n")
# Accept AWS_REGION in bundle as region source. # Accept AWS_REGION in bundle as region source.
if not os.environ.get("AWS_DEFAULT_REGION") and parsed.get("AWS_REGION"): if not os.environ.get("AWS_DEFAULT_REGION") and parsed.get("AWS_REGION"):
f.write(f"AWS_DEFAULT_REGION={parsed['AWS_REGION']}\n") f.write(f"AWS_DEFAULT_REGION={parsed['AWS_REGION']}\\n")
PY PY
- name: Check required AWS secrets - name: Check required AWS secrets