-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
21 lines (17 loc) · 807 Bytes
/
vars.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# ---------------------------------------------------------------------------------------------------------------------
# ENVIRONMENT VARIABLES
# Define these secrets as environment variables
# ---------------------------------------------------------------------------------------------------------------------
# AWS_ACCESS_KEY_ID
# AWS_SECRET_ACCESS_KEY
# ---------------------------------------------------------------------------------------------------------------------
# OPTIONAL PARAMETERS
# ---------------------------------------------------------------------------------------------------------------------
variable "ami_name" {
description = "AMI Name"
default = ami-efd0428f
}
variable "server_port" {
description = "The port the server will use for HTTP requests"
default = 8080
}