Fix YAML indentation in LOWER parsing step
Some checks failed
Deploy Hello Lambda CFT / deploy (push) Failing after 15s
Some checks failed
Deploy Hello Lambda CFT / deploy (push) Failing after 15s
This commit is contained in:
parent
0ecf2aa879
commit
96ab9d7e97
1 changed files with 40 additions and 40 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue