Closed renodesper closed 8 months ago
@renodesper is there a reason that you think pulumi doesn't support this feature? I don't see anything in the linked documentation that indicates that we do not support it. If you are having an issue can you provide us an example of a pulumi app where this is not working?
You can also use this tool to convert your Terraform configuration to pulumi https://www.pulumi.com/blog/converting-full-terraform-programs-to-pulumi/
@renodesper is there a reason that you think pulumi doesn't support this feature? I don't see anything in the linked documentation that indicates that we do not support it. If you are having an issue can you provide us an example of a pulumi app where this is not working?
You can also use this tool to convert your Terraform configuration to pulumi https://www.pulumi.com/blog/converting-full-terraform-programs-to-pulumi/
I don't see the trigger
section on the documentation. This one:
trigger {
provider_type = "CodeStarSourceConnection"
git_configuration {
source_action_name = "Source"
push {
tags {
includes = ["prod-*"]
}
}
}
}
I also tried using pulumi convert
and the trigger
section is nowhere to be found. It looks like convert
didn't warn me about the missing section and just tried its best to convert what it knows.
@renodesper it looks like in pulumi this is called triggers
.
https://www.pulumi.com/registry/packages/aws/api-docs/codepipeline/pipeline/#triggers_nodejs
I'll go ahead and close the issue as responded. @renodesper If you still have troubles using the triggers
property, please let us know.
Hello!
Issue details
Last year, AWS CodePipeline announced support for starting a pipeline execution on git tags pushed to repositories in GitHub, GitHub Enterprise Server, GitLab Cloud and Bitbucket Cloud using CodeStarSourceConnection source actions. Do we have support for this as well? Or is it already in the timeline?
In terraform, this is the most simple way to use it:
There are a few things to note:
Affected area/feature