-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
48 lines (37 loc) · 912 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
38
39
40
41
42
43
44
45
46
47
48
variable "profile" {
description = "AWS profile for AWS CLI Credentials"
default = "red"
}
variable "region" {
description = "EC2 Region for the VPC"
default = "us-west-2"
}
variable "availability_zone" {
description = "EC2 availability zone for the VPC"
default = "a"
}
variable "environment" {
description = "EC2 Region for the VPC"
default = "production"
}
variable "host_prefix" {
default = "red"
}
variable "internal_domain_name" {
default = "red.lan"
}
variable "external_domain_name" {
default = "aws.reddotstorage.com"
}
variable "app_ssl_enable" {
default = true
}
variable "prod_db_password" {
description = "Production database password."
}
variable "stage_db_password" {
description = "Stage database password."
}
variable "internal_internet_egress" {
description = "Allow outbound internet communication for non PCI/HIPPA environments"
}