Cloudformation not supporting Full Clone in Output artifact format for codepipeline

0

I am working on CFT which pulls code from GitHub with 2.0 OAuth app version and my buildspec needs git metadata to work with.

if my requirement is unclear, look at this feature in aws docs for better understanding.

Below is the code I have for CFT

  CodePipelineGitHub:
    Type: AWS::CodePipeline::Pipeline
    Properties:
      RoleArn: !Ref CodePipelineServiceRole
      ArtifactStore:
        Type: S3
        Location: !Ref CodePipelineArtifactBucket
      Stages:
        - Name: source
          Actions:
            - Name: aa-source
              ActionTypeId:
                Category: Source
                Owner: AWS
                Version: 1
                Provider: CodeStarSourceConnection
              Configuration: 
                ConnectionArn: !Ref ConnectionArn
                FullRepositoryId: !Ref GitSourceRepo #"some-user/my-repo"
                BranchName: !Ref GitBranch
              OutputArtifacts:
                - Name: SourceArtifact
              RunOrder: 1

But from GUI, we have option to get the .git metadata into the source output artifact.

Please provide a solution to get the git metadata into the build stage.

已提问 2 年前1150 查看次数
1 回答
0

You can try adding:

OutputArtifactFormat: CODEBUILD_CLONE_REF

To the action's Configuration, that should address the full clone.

AWS
专家
Raphael
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则