From 3343c325cc5d6e0640a06be0920272647ebdd98b Mon Sep 17 00:00:00 2001 From: rrigato Date: Sun, 10 Dec 2023 11:33:11 -0600 Subject: [PATCH] remove BuildProdEnvironment stage --- README.md | 14 -------------- templates/code_pipeline.yml | 37 ------------------------------------- 2 files changed, 51 deletions(-) diff --git a/README.md b/README.md index 6a7e34e..8fa9f3f 100644 --- a/README.md +++ b/README.md @@ -51,20 +51,6 @@ and tests static html/webpage configuration - buildspec_prod.yml = Buildspec to use for the prod deployment CodeBuild project - - -#### legacy - -##### Prepare Existing CloudFront for migration - - -#### logs -- directory for python log files - - - - - #### templates diff --git a/templates/code_pipeline.yml b/templates/code_pipeline.yml index 4f2a815..0753cab 100644 --- a/templates/code_pipeline.yml +++ b/templates/code_pipeline.yml @@ -346,43 +346,6 @@ Resources: RunOrder: 1 - - ############################### - #stage 4 Builds the prod - # environment by populating resources created - # in stage 2 - ############################### - - Name: BuildProdEnvironment - Actions: - - Name: Test - ###################################### - #List of valid action type providers - #by action can be found here: - #https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#actions-valid-providers - ###################################### - ActionTypeId: - Category: Test - Owner: AWS - Version: '1' - Provider: CodeBuild - InputArtifacts: - - Name: !GetAtt GitRepo.Name - - Name: BuildDev - OutputArtifacts: - - Name: BuildProd - ######################################### - #Configuration Details by provider can be found here: - #https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#structure-configuration-examples - # - ######################################### - Configuration: - PrimarySource: !GetAtt GitRepo.Name - ProjectName: - !Join ['', ['prod-build-', !Ref ProjectName]] - - RunOrder: 1 - - #################################### #Role that will be assumed when #CodeBuild runs for dev