-
Notifications
You must be signed in to change notification settings - Fork 8
/
variables.tf
34 lines (34 loc) · 975 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
variable "name" {
type = string
description = "Name for the Spot account. The account name must contain at least one character that is a-z or A-Z"
}
variable "spotinst_token" {
type = string
description = "Spot API Token"
sensitive = true
}
variable "policy_file" {
type = string
default = null
description = "(OPTIONAL) Provide Custom IAM Policy File in JSON format"
}
variable "role_name" {
type = string
default = null
description = "(OPTIONAL) Provide Custom IAM Role Name"
}
variable "policy_name" {
type = string
default = null
description = "(OPTIONAL) Provide Custom IAM Policy Name"
}
variable "tags" {
type = map(string)
default = null
description = "(OPTIONAL) Add tags to AWS resources"
}
variable "debug" {
type = bool
description = "Add flag to expose sensitive variables for troubleshooting"
default = false
}