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.

preguntada hace 2 años1150 visualizaciones
1 Respuesta
0

You can try adding:

OutputArtifactFormat: CODEBUILD_CLONE_REF

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

AWS
EXPERTO
Raphael
respondido hace 2 años

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas