website/docs: install: add aws (#12082)
This commit is contained in:

committed by
GitHub

parent
13b2543221
commit
fda6054285
11
website/docs/install-config/install/aws/fix_template.py
Executable file
11
website/docs/install-config/install/aws/fix_template.py
Executable file
@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import yaml
|
||||
|
||||
with open("template.yaml") as file:
|
||||
template = yaml.safe_load(file)
|
||||
del template["Conditions"]["CDKMetadataAvailable"]
|
||||
del template["Parameters"]["BootstrapVersion"]
|
||||
del template["Resources"]["CDKMetadata"]
|
||||
with open("template.yaml", "w") as file:
|
||||
yaml.dump(template, file)
|
Reference in New Issue
Block a user