website/docs: install: add aws (#12082)

This commit is contained in:
Marc 'risson' Schmitt
2024-12-01 16:43:14 +01:00
committed by GitHub
parent 13b2543221
commit fda6054285
17 changed files with 1905 additions and 4 deletions

View 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)