AWS CodePipeline Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
(19 intermediate revisions by the same user not shown)
Line 1: Line 1:
=External=
* https://docs.aws.amazon.com/codepipeline/latest/userguide/tutorials.html
=Internal=
=Internal=


* [[AWS CodePipeline#Subjects|AWS CodePipeline]]
* [[AWS CodePipeline#Subjects|AWS CodePipeline]]


=Create an ECS Pipeline=
=Overview=
 
=Command Line Operations=
 
{{Internal|AWS CodePipeline Command Line Operations|Command Line Operations}}
 
=Extended Examples=
 
* <span id='Simple_GitHub_-_Simulated_Shell_Build_-_Simulated_Deployment_Pipeline'></span>[[Simple GitHub Simulated Shell Build Simulated Deployment AWS CodePipeline Pipeline|thalarion - Simple GitHub - Simulated Shell Build - Simulated Deployment Pipeline]]
* <span id='Invoking_Lambda_from_CodePipeline_Pipeline'></span>[[Invoking Lambda from CodePipeline Pipeline]]
 
=Troubleshooting and Debugging=
 
<font color=darkgray>If creating a resource that allows for a "Description", like an API Gateway API, you can use that to render various configuration parameters to be debugged:
 
AWSTemplateFormatVersion: '2010-09-09'
Parameters:
  OpenApiAwsFile:
      Type: String
Resources:
  Api:
    Type: AWS::ApiGateway::RestApi
    Properties:
      Name: test
      Description: !Sub 'This way we can render parameters ${OpenApiAwsFile}'
  ...


{{External|[https://docs.aws.amazon.com/codepipeline/latest/userguide/tutorials-ecs-ecr-codedeploy.html
</font>

Latest revision as of 18:48, 19 March 2019

External

Internal

Overview

Command Line Operations

Command Line Operations

Extended Examples

Troubleshooting and Debugging

If creating a resource that allows for a "Description", like an API Gateway API, you can use that to render various configuration parameters to be debugged:

AWSTemplateFormatVersion: '2010-09-09'
Parameters:
  OpenApiAwsFile:
     Type: String
Resources:
  Api:
    Type: AWS::ApiGateway::RestApi
    Properties:
      Name: test
      Description: !Sub 'This way we can render parameters ${OpenApiAwsFile}'
  ...