-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvariables.tf
37 lines (32 loc) · 885 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
variable "ami_id" {
description = "The AMI ID for the NGINX Plus agent instance"
type = string
}
variable "nginx_plus_agent_count" {
default = 1
description = "Number of NGINX Plus agent instances"
type = number
}
variable "key_name" {
description = "The key used to ssh into your AWS instance"
type = string
}
variable "instance_type" {
default = "c5.xlarge"
description = "The instance type for your NGINX Plus agent instance"
type = string
}
variable "name_prefix" {
default = ""
description = "Naming prefix of resources being created"
type = string
}
variable "owner" {
default = null
description = "Owner of resources being created (included as a tag)"
type = string
}
variable "subnet_id" {
description = "The subnet ID for your NGINX Plus agent instance"
type = string
}