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