-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy pathaws-config.yml.remove
More file actions
42 lines (37 loc) · 1.58 KB
/
aws-config.yml.remove
File metadata and controls
42 lines (37 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
##########################################################
# AWS Configuration file for NodeJS Deploy GitHub Action #
# #
# NOTE: This file holds the variables needed #
# to configure the GitHub Deploy NodeJS #
# on AWS Serverless #
# #
# This file needs to be in the location: #
# - .github/aws-config.yml #
# in your repository to be parsed at run time #
##########################################################
########################################
# AWS S3 Bucket for package and deploy #
########################################
# NOTE: This bucket must exist before the GitHub Action, and match the name of your S3 bucket on Amazon
#s3_bucket: crest-github-cd/{datetime}.zip
##################################
# AWS Cloud Formation Stack name #
##################################
# NOTE: Defaults to "mystack" if left empty
aws_stack_name: mystack
####################
# AWS SAM Template #
####################
# NOTE: This is the AWS SAM template.yml file that we need to deploy
# Pathing is from root of repository:
# Example:
# if file is called `template.yml` and is in the root of repository
# under the '.github' folder:
# sam_template: .github/template.yml
sam_template: sam-template.yml
################################
# region for connection to AWS #
################################
# Default region is: us-west-2
# if not provided below
region: ap-southeast-1