Skip to content

Instantly share code, notes, and snippets.

@codygreen
Created August 28, 2019 12:07
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 codygreen/4ef30277562a399a839057170b58470d to your computer and use it in GitHub Desktop.
Save codygreen/4ef30277562a399a839057170b58470d to your computer and use it in GitHub Desktop.
AWS Codepipeline Deploy to S3 Snippet
- Name: Deploy
Actions:
- Name: DeploySource
InputArtifacts:
- Name: SourceOutput
ActionTypeId:
Category: Deploy
Owner: AWS
Version: "1"
Provider: "S3"
Configuration:
BucketName: !Ref S3Bucket
ObjectKey: !Ref S3Key
Extract: 'true'
@codygreen
Copy link
Author

I had a hard time finding the correct configuration settings for AWS Codepipeline S3 deployments so I'm posting this here as a reference.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment