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.

1 réponse
0

You can try adding:

OutputArtifactFormat: CODEBUILD_CLONE_REF

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

AWS
EXPERT
Raphael
répondu il y a 2 ans

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions