Skip to content

Commit

Permalink
Fix an issue in manual spec patching (#3242)
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong authored May 14, 2024
1 parent 8fc58b9 commit 66fc7fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/update_schemas_manually.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
path="/properties/HealthCheckType",
),
Patch(
values={"requiredXor": ["LaunchTemplateID", "LaunchTemplateName"]},
values={"requiredXor": ["LaunchTemplateId", "LaunchTemplateName"]},
path="/definitions/LaunchTemplateSpecification",
),
Patch(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"op": "add",
"path": "/definitions/LaunchTemplateSpecification/requiredXor",
"value": [
"LaunchTemplateID",
"LaunchTemplateId",
"LaunchTemplateName"
]
},
Expand Down

0 comments on commit 66fc7fa

Please sign in to comment.