-
Notifications
You must be signed in to change notification settings - Fork 8
/
variables.tf
81 lines (67 loc) · 1.81 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
variable "ami_name_postgresql" {
default = "PostgreSQL"
description = "The AMI name for the PostgreSQL AMI"
type = string
}
variable "ami_name_smtp" {
default = "SMTP"
description = "The AMI name for the SMTP AMI"
type = string
}
variable "ami_name_nginx" {
default = "NGINX"
description = "The AMI name for the NGINX AMI"
type = string
}
variable "ami_name_nginx_controller" {
default = "NGINX Controller"
description = "The AMI name for the NGINX Controller AMI"
type = string
}
variable "key_name" {
description = "The key used to ssh into your AWS instance"
type = string
}
variable "key_location" {
description = "The location of the key used to ssh into your AWS instance"
type = string
}
variable "nginx_controller_fqdn" {
description = "NGINX Controller's FQDN"
type = string
}
variable "nginx_controller_license_location" {
description = "NGINX Controller's FQDN"
type = string
}
variable "nginx_controller_tarball_location" {
description = "Tarball location of NGINX Controller"
type = string
}
variable "nginx_plus_certificate" {
description = "The path to your NGINX Plus certificate"
type = string
}
variable "nginx_plus_key" {
description = "The path to your NGINX Plus key"
type = string
}
variable "owner" {
description = "Owner of resources being created (included as a tag)"
type = string
}
variable "region" {
default = "us-west-1"
description = "Your target AWS region"
type = string
}
variable "run_packer" {
default = true
description = "Run Packer builds from within Terraform"
type = bool
}
variable "run_ansible" {
default = true
description = "Run Ansible playbooks from within Terraform"
type = bool
}