Skip to content

Commit

Permalink
codepipeline: add Files property to OutputArtifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
markpeek committed Oct 24, 2024
1 parent df4d439 commit c5f98b4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions scripts/patches/codepipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,14 @@
"path": "/PropertyTypes/AWS::CodePipeline::Pipeline.Stages/Properties/Blockers/ItemType",
"value": "Blockers",
},
# Add missing OutputArtifact.Files
{
"op": "add",
"path": "/PropertyTypes/AWS::CodePipeline::Pipeline.OutputArtifacts/Properties/Files",
"value": {
"PrimitiveItemType": "String",
"Required": False,
"Type": "List",
},
},
]
1 change: 1 addition & 0 deletions troposphere/codepipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ class OutputArtifacts(AWSProperty):
"""

props: PropsDictType = {
"Files": ([str], False),
"Name": (str, True),
}

Expand Down

0 comments on commit c5f98b4

Please sign in to comment.