Codepipeline restricting artifact properties in codebuild











up vote
0
down vote

favorite












I had created a codebuild to build my project based on the changes in codecommit. This is the batch-get-projects command details for it



{
"projects": [
{
"name": "MultiRepBuild",
"arn": "arn:aws:codebuild:us-east-1:100000xxx0x:project/MultiRepBui
ld",
"source": {
"type": "CODECOMMIT",
"location": "https://git-codecommit.us-east-1.amazonaws.com/v1/r
epos/PythonRep",
"gitCloneDepth": 1,
"insecureSsl": false
},
"secondarySources": ,
"artifacts": {
"type": "S3",
"location": "testxxxthe-codebuild",
"path": "",
"namespaceType": "NONE",
"name": "Lambda",
"packaging": "ZIP",
"overrideArtifactName": false,
"encryptionDisabled": false
},
"secondaryArtifacts": ,
"cache": {
"type": "NO_CACHE"
},
"environment": {
"type": "LINUX_CONTAINER",
"image": "aws/codebuild/python:3.6.5",
"computeType": "BUILD_GENERAL1_SMALL",
"environmentVariables": ,
"privilegedMode": false
},
"serviceRole": "arn:aws:iam::xxxxxxxx:role/service-role/codebuil
d-MultiRepBuild-service-role",
"timeoutInMinutes": 60,
"encryptionKey": "arn:aws:kms:us-east-1:xxxxxx:alias/aws/s3",
"tags": ,
"created": 1542607679.567,
"lastModified": 1542611632.345,
"badge": {
"badgeEnabled": false
}
}
],
"projectsNotFound":
}


This codebuild will create a buildartifact with specified name Lambda and keep it in specified bucket in zip format.



But when i integrate same codebuild with the Codepipeline it is overriding the bucketname as per this answer. Even i try to change the bucketname with cloudformation but how can i add the parameters that are defined in the artifacts section(i.e.name) from the above snippet, because i will point this name as an S3KeyName in my cloudformation template.



I tried to change in the name in below file which i got through by running aws codepipeline get-pipeline --name MyFirstPipeline >pipeline.json command



{
"pipeline": {
"name": "MultiBuild",
"roleArn": "arn:aws:iam::xxxxxxxxxxx:role/service-role/AWSCodePipelineServiceRole-us-east-1-MultiBuild",
"artifactStore": {
"type": "S3",
"location": "codepipeline-us-east-1-xxxxx"
},
"stages": [
{
"name": "Source",
"actions": [
{
"name": "Source",
"actionTypeId": {
"category": "Source",
"owner": "AWS",
"provider": "CodeCommit",
"version": "1"
},
"runOrder": 1,
"configuration": {
"BranchName": "master",
"PollForSourceChanges": "false",
"RepositoryName": "PythonRep"
},
"outputArtifacts": [
{
"name": "SourceArtifact"
}
],
"inputArtifacts":
}
]
},
{
"name": "Build",
"actions": [
{
"name": "Build",
"actionTypeId": {
"category": "Build",
"owner": "AWS",
"provider": "CodeBuild",
"version": "1"
},
"runOrder": 1,
"configuration": {
"ProjectName": "MultiRepBuild"
},
"outputArtifacts": [
{
"name": "Lambda" -->Here
}
],
"inputArtifacts": [
{
"name": "SourceArtifact"
}
]
}
]
}
],
"version": 1
}
}


This is creating a folder with name Lambda rather than creating a file. The file structure is like this



 ---MultiBuild
|
|
-->Lambda
|
|
abcd.zip
-->SourceArti
|
|
efgh.zip









share|improve this question


























    up vote
    0
    down vote

    favorite












    I had created a codebuild to build my project based on the changes in codecommit. This is the batch-get-projects command details for it



    {
    "projects": [
    {
    "name": "MultiRepBuild",
    "arn": "arn:aws:codebuild:us-east-1:100000xxx0x:project/MultiRepBui
    ld",
    "source": {
    "type": "CODECOMMIT",
    "location": "https://git-codecommit.us-east-1.amazonaws.com/v1/r
    epos/PythonRep",
    "gitCloneDepth": 1,
    "insecureSsl": false
    },
    "secondarySources": ,
    "artifacts": {
    "type": "S3",
    "location": "testxxxthe-codebuild",
    "path": "",
    "namespaceType": "NONE",
    "name": "Lambda",
    "packaging": "ZIP",
    "overrideArtifactName": false,
    "encryptionDisabled": false
    },
    "secondaryArtifacts": ,
    "cache": {
    "type": "NO_CACHE"
    },
    "environment": {
    "type": "LINUX_CONTAINER",
    "image": "aws/codebuild/python:3.6.5",
    "computeType": "BUILD_GENERAL1_SMALL",
    "environmentVariables": ,
    "privilegedMode": false
    },
    "serviceRole": "arn:aws:iam::xxxxxxxx:role/service-role/codebuil
    d-MultiRepBuild-service-role",
    "timeoutInMinutes": 60,
    "encryptionKey": "arn:aws:kms:us-east-1:xxxxxx:alias/aws/s3",
    "tags": ,
    "created": 1542607679.567,
    "lastModified": 1542611632.345,
    "badge": {
    "badgeEnabled": false
    }
    }
    ],
    "projectsNotFound":
    }


    This codebuild will create a buildartifact with specified name Lambda and keep it in specified bucket in zip format.



    But when i integrate same codebuild with the Codepipeline it is overriding the bucketname as per this answer. Even i try to change the bucketname with cloudformation but how can i add the parameters that are defined in the artifacts section(i.e.name) from the above snippet, because i will point this name as an S3KeyName in my cloudformation template.



    I tried to change in the name in below file which i got through by running aws codepipeline get-pipeline --name MyFirstPipeline >pipeline.json command



    {
    "pipeline": {
    "name": "MultiBuild",
    "roleArn": "arn:aws:iam::xxxxxxxxxxx:role/service-role/AWSCodePipelineServiceRole-us-east-1-MultiBuild",
    "artifactStore": {
    "type": "S3",
    "location": "codepipeline-us-east-1-xxxxx"
    },
    "stages": [
    {
    "name": "Source",
    "actions": [
    {
    "name": "Source",
    "actionTypeId": {
    "category": "Source",
    "owner": "AWS",
    "provider": "CodeCommit",
    "version": "1"
    },
    "runOrder": 1,
    "configuration": {
    "BranchName": "master",
    "PollForSourceChanges": "false",
    "RepositoryName": "PythonRep"
    },
    "outputArtifacts": [
    {
    "name": "SourceArtifact"
    }
    ],
    "inputArtifacts":
    }
    ]
    },
    {
    "name": "Build",
    "actions": [
    {
    "name": "Build",
    "actionTypeId": {
    "category": "Build",
    "owner": "AWS",
    "provider": "CodeBuild",
    "version": "1"
    },
    "runOrder": 1,
    "configuration": {
    "ProjectName": "MultiRepBuild"
    },
    "outputArtifacts": [
    {
    "name": "Lambda" -->Here
    }
    ],
    "inputArtifacts": [
    {
    "name": "SourceArtifact"
    }
    ]
    }
    ]
    }
    ],
    "version": 1
    }
    }


    This is creating a folder with name Lambda rather than creating a file. The file structure is like this



     ---MultiBuild
    |
    |
    -->Lambda
    |
    |
    abcd.zip
    -->SourceArti
    |
    |
    efgh.zip









    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I had created a codebuild to build my project based on the changes in codecommit. This is the batch-get-projects command details for it



      {
      "projects": [
      {
      "name": "MultiRepBuild",
      "arn": "arn:aws:codebuild:us-east-1:100000xxx0x:project/MultiRepBui
      ld",
      "source": {
      "type": "CODECOMMIT",
      "location": "https://git-codecommit.us-east-1.amazonaws.com/v1/r
      epos/PythonRep",
      "gitCloneDepth": 1,
      "insecureSsl": false
      },
      "secondarySources": ,
      "artifacts": {
      "type": "S3",
      "location": "testxxxthe-codebuild",
      "path": "",
      "namespaceType": "NONE",
      "name": "Lambda",
      "packaging": "ZIP",
      "overrideArtifactName": false,
      "encryptionDisabled": false
      },
      "secondaryArtifacts": ,
      "cache": {
      "type": "NO_CACHE"
      },
      "environment": {
      "type": "LINUX_CONTAINER",
      "image": "aws/codebuild/python:3.6.5",
      "computeType": "BUILD_GENERAL1_SMALL",
      "environmentVariables": ,
      "privilegedMode": false
      },
      "serviceRole": "arn:aws:iam::xxxxxxxx:role/service-role/codebuil
      d-MultiRepBuild-service-role",
      "timeoutInMinutes": 60,
      "encryptionKey": "arn:aws:kms:us-east-1:xxxxxx:alias/aws/s3",
      "tags": ,
      "created": 1542607679.567,
      "lastModified": 1542611632.345,
      "badge": {
      "badgeEnabled": false
      }
      }
      ],
      "projectsNotFound":
      }


      This codebuild will create a buildartifact with specified name Lambda and keep it in specified bucket in zip format.



      But when i integrate same codebuild with the Codepipeline it is overriding the bucketname as per this answer. Even i try to change the bucketname with cloudformation but how can i add the parameters that are defined in the artifacts section(i.e.name) from the above snippet, because i will point this name as an S3KeyName in my cloudformation template.



      I tried to change in the name in below file which i got through by running aws codepipeline get-pipeline --name MyFirstPipeline >pipeline.json command



      {
      "pipeline": {
      "name": "MultiBuild",
      "roleArn": "arn:aws:iam::xxxxxxxxxxx:role/service-role/AWSCodePipelineServiceRole-us-east-1-MultiBuild",
      "artifactStore": {
      "type": "S3",
      "location": "codepipeline-us-east-1-xxxxx"
      },
      "stages": [
      {
      "name": "Source",
      "actions": [
      {
      "name": "Source",
      "actionTypeId": {
      "category": "Source",
      "owner": "AWS",
      "provider": "CodeCommit",
      "version": "1"
      },
      "runOrder": 1,
      "configuration": {
      "BranchName": "master",
      "PollForSourceChanges": "false",
      "RepositoryName": "PythonRep"
      },
      "outputArtifacts": [
      {
      "name": "SourceArtifact"
      }
      ],
      "inputArtifacts":
      }
      ]
      },
      {
      "name": "Build",
      "actions": [
      {
      "name": "Build",
      "actionTypeId": {
      "category": "Build",
      "owner": "AWS",
      "provider": "CodeBuild",
      "version": "1"
      },
      "runOrder": 1,
      "configuration": {
      "ProjectName": "MultiRepBuild"
      },
      "outputArtifacts": [
      {
      "name": "Lambda" -->Here
      }
      ],
      "inputArtifacts": [
      {
      "name": "SourceArtifact"
      }
      ]
      }
      ]
      }
      ],
      "version": 1
      }
      }


      This is creating a folder with name Lambda rather than creating a file. The file structure is like this



       ---MultiBuild
      |
      |
      -->Lambda
      |
      |
      abcd.zip
      -->SourceArti
      |
      |
      efgh.zip









      share|improve this question













      I had created a codebuild to build my project based on the changes in codecommit. This is the batch-get-projects command details for it



      {
      "projects": [
      {
      "name": "MultiRepBuild",
      "arn": "arn:aws:codebuild:us-east-1:100000xxx0x:project/MultiRepBui
      ld",
      "source": {
      "type": "CODECOMMIT",
      "location": "https://git-codecommit.us-east-1.amazonaws.com/v1/r
      epos/PythonRep",
      "gitCloneDepth": 1,
      "insecureSsl": false
      },
      "secondarySources": ,
      "artifacts": {
      "type": "S3",
      "location": "testxxxthe-codebuild",
      "path": "",
      "namespaceType": "NONE",
      "name": "Lambda",
      "packaging": "ZIP",
      "overrideArtifactName": false,
      "encryptionDisabled": false
      },
      "secondaryArtifacts": ,
      "cache": {
      "type": "NO_CACHE"
      },
      "environment": {
      "type": "LINUX_CONTAINER",
      "image": "aws/codebuild/python:3.6.5",
      "computeType": "BUILD_GENERAL1_SMALL",
      "environmentVariables": ,
      "privilegedMode": false
      },
      "serviceRole": "arn:aws:iam::xxxxxxxx:role/service-role/codebuil
      d-MultiRepBuild-service-role",
      "timeoutInMinutes": 60,
      "encryptionKey": "arn:aws:kms:us-east-1:xxxxxx:alias/aws/s3",
      "tags": ,
      "created": 1542607679.567,
      "lastModified": 1542611632.345,
      "badge": {
      "badgeEnabled": false
      }
      }
      ],
      "projectsNotFound":
      }


      This codebuild will create a buildartifact with specified name Lambda and keep it in specified bucket in zip format.



      But when i integrate same codebuild with the Codepipeline it is overriding the bucketname as per this answer. Even i try to change the bucketname with cloudformation but how can i add the parameters that are defined in the artifacts section(i.e.name) from the above snippet, because i will point this name as an S3KeyName in my cloudformation template.



      I tried to change in the name in below file which i got through by running aws codepipeline get-pipeline --name MyFirstPipeline >pipeline.json command



      {
      "pipeline": {
      "name": "MultiBuild",
      "roleArn": "arn:aws:iam::xxxxxxxxxxx:role/service-role/AWSCodePipelineServiceRole-us-east-1-MultiBuild",
      "artifactStore": {
      "type": "S3",
      "location": "codepipeline-us-east-1-xxxxx"
      },
      "stages": [
      {
      "name": "Source",
      "actions": [
      {
      "name": "Source",
      "actionTypeId": {
      "category": "Source",
      "owner": "AWS",
      "provider": "CodeCommit",
      "version": "1"
      },
      "runOrder": 1,
      "configuration": {
      "BranchName": "master",
      "PollForSourceChanges": "false",
      "RepositoryName": "PythonRep"
      },
      "outputArtifacts": [
      {
      "name": "SourceArtifact"
      }
      ],
      "inputArtifacts":
      }
      ]
      },
      {
      "name": "Build",
      "actions": [
      {
      "name": "Build",
      "actionTypeId": {
      "category": "Build",
      "owner": "AWS",
      "provider": "CodeBuild",
      "version": "1"
      },
      "runOrder": 1,
      "configuration": {
      "ProjectName": "MultiRepBuild"
      },
      "outputArtifacts": [
      {
      "name": "Lambda" -->Here
      }
      ],
      "inputArtifacts": [
      {
      "name": "SourceArtifact"
      }
      ]
      }
      ]
      }
      ],
      "version": 1
      }
      }


      This is creating a folder with name Lambda rather than creating a file. The file structure is like this



       ---MultiBuild
      |
      |
      -->Lambda
      |
      |
      abcd.zip
      -->SourceArti
      |
      |
      efgh.zip






      amazon-web-services aws-codepipeline aws-codebuild






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 19 hours ago









      Private

      393316




      393316





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53370873%2fcodepipeline-restricting-artifact-properties-in-codebuild%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53370873%2fcodepipeline-restricting-artifact-properties-in-codebuild%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          404 Error Contact Form 7 ajax form submitting

          How to know if a Active Directory user can login interactively

          TypeError: fit_transform() missing 1 required positional argument: 'X'