AWS CodePipeline Operations

From NovaOrdis Knowledge Base
Revision as of 18:48, 19 March 2019 by Ovidiu (talk | contribs) (→‎Extended Examples)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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}'
  ...