-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AWS::CodePipeline::Pipeline - Add Arn as a Return Value #376
Comments
More generalized workaround with the "arn:${AWS::Partition}:codepipeline:${AWS::Region}:${AWS::AccountId}:${Pipeline}" |
Oh right, forgot about that one. Honestly it's difficult to tell from outside AWS who's responsible for providing this kind of functionality. If it's the cfn team then this issue feels like a duplicate of #68 but if it's the CodePipeline team then it'd be better if this issue stayed separate. My concern is that inertia will set in if ALL Arns are added at once. Individual additions feels more tractable since you can make quicker, more incremental progress. |
Any news about this? I have just lost 2h of my day trying to get the Arn using |
vouch for this. |
I just also hit this one! Can we add a return value to make it consistent with CodeBuild etc? |
This is needed. Thanks. |
Also vote for this! Please implement! Thanks! |
+1 |
work-around:
|
You can make it even shorter if you want:
|
+1 for this |
Please add this. I need to pass a codepipeline arn to AWS::Scheduler::Schedule in the same stack. |
+1 |
+1. It's a value available already - why isn't this just exposed? |
+1 |
+1 |
1. Title
AWS::CodePipeline::Pipeline-Add Arn as a Return Value
2. Scope of request
When you want to reference the arn of a Pipeline, you have to manually construct it like this:
"arn:aws:codepipeline:${AWS::Region}:${AWS::AccountId}:${Pipeline}"
This is bad for a number of reasons:
It would be great for Arn to be a supported attribute when a Pipeline is passed to Fn::GetAtt like this:
"${Pipeline.Arn}"
3. Expected behavior
Arn is returned when a pipeline is passed to Fn::GetAtt with the Arn argument.
4. Suggest specific test cases
In order to wire up push events in CodePipeline using S3 as a source, you have to pass the arn of the pipeline to an event rule, like this:
5. Helpful Links to speed up research and evaluation
6. Category (required) - Will help with tagging and be easier to find by other users to +1
Developer Tools, Enhancement
The text was updated successfully, but these errors were encountered: