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
|
||||
v = parsed.get(k)
|
||||
if v:
|
||||
f.write(f"{k}={v}\n")
|
||||
f.write(f"{k}={v}\\n")
|
||||
|
||||
# Accept AWS_REGION in bundle as region source.
|
||||
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
|
||||
|
||||
- name: Check required AWS secrets
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue