-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathvariables.tf
37 lines (30 loc) · 847 Bytes
/
variables.tf
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
################################
###### QUICK EDIT'S HERE ######
################################
###### PROJECT OPTIONS ######
# Customize the Serverless App Name
variable "app_name" {
description = "Serverless Project Name"
default = "serverless-project-demo"
}
###### GITHUB OPTIONS ######
# Github Repository Owner
variable "git_repository_owner" {
description = "Github Repository Owner"
default = "msfidelis"
}
# Github Repository Project Name
variable "git_repository_name" {
description = "Project name on Github"
default = "serverless-architecture-boilerplate"
}
# Default Branch
variable "git_repository_branch" {
description = "Github Project Branch"
default = "master"
}
# Customize your AWS Region
variable "aws_region" {
description = "AWS Region for the VPC"
default = "us-east-1"
}