Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created September 7, 2019 02:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xximjasonxx/c8abffe33bc5338fca6a561bc272efde to your computer and use it in GitHub Desktop.
Save xximjasonxx/c8abffe33bc5338fca6a561bc272efde to your computer and use it in GitHub Desktop.
AWSTemplateFormatVersion: 2010-09-09
Description: "Creates infrastructure for Thumnbail Creator"
Resources:
ApiGatewayDeployment:
Type: AWS::ApiGateway::Deployment
Properties:
RestApiId: !Ref ApiGatewayRest
StageName: DefaultDeployment
DependsOn:
- ApiGatewayRest
- BucketItemApiMethod
DefaultApiGatewayStage:
Type: AWS::ApiGateway::Stage
Properties:
RestApiId: !Ref ApiGatewayRest
TracingEnabled: true
DeploymentId: !Ref ApiGatewayDeployment
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment