-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
41 lines (32 loc) · 893 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
variable "domain" {
description = "The base domain of the service"
}
variable "dns_zone" {
description = "The Route53 zone to add records to"
}
variable "admin_email" {
description = "Valid email address for the admin of the service"
}
variable "key_name" {
description = "Name of an EC2 keypair to allow SSH to the instance"
}
variable "snikket_version" {
description = "The Snikket branch/tag to deploy"
default = "alpha"
}
variable "import_test_data" {
description = "Set to 'true' to bootstrap the server with test accounts"
default = "false"
}
variable "aws_region" {
description = "AWS region to deploy to"
}
variable "aws_zone" {
description = "AWS availability zone to deploy to"
}
variable "vpc_id" {
description = "Identifier of the VPC to deploy to"
}
variable "config_secret" {
description = "Secret key used to initialize e.g. API keys"
}