I'm learning some DevOps techniques using AWS CodePipeline (Cloudformation and CodeBuild).
My (simplified) pipeline is this:
- Push to github repo triggers pipeline
- CloudFormation builds/updates backend infrastructure
- CodeBuild does some additional work
At the moment, CloudFormation outputs the following:
Outputs:
RestApiId:
Value: !Ref ApiGateway
Description: 'API Id'
Question: How can I get the ApiGateway ID in CloudBuild?