AWS CodePipeline Operations: Difference between revisions
Jump to navigation
Jump to search
Line 14: | Line 14: | ||
=Troubleshooting and Debugging= | =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}' | |||
... | |||
</font> |
Revision as of 20:10, 17 March 2019
External
Internal
Overview
Simple GitHub - Simulated Shell Build - Simulated Deployment Pipeline
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}' ...