Skip to content

Commit

Permalink
fixing tags (#3135)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcdurak authored Oct 24, 2024
1 parent 95d5a02 commit 74a14be
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,13 @@ def prepare_or_run_pipeline(
)

pipeline.create(
role_arn=self.config.execution_role, tags=settings.pipeline_tags
role_arn=self.config.execution_role,
tags=[
{"Key": key, "Value": value}
for key, value in settings.pipeline_tags.items()
]
if settings.pipeline_tags
else None,
)
execution = pipeline.start()
logger.warning(
Expand Down

0 comments on commit 74a14be

Please sign in to comment.