forked from hoverkraft-tech/terraform-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
29 lines (25 loc) · 758 Bytes
/
variables.tf
File metadata and controls
29 lines (25 loc) · 758 Bytes
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
variable "name" {
description = "Name applied to this instance"
type = string
default = ""
}
variable "customer" {
description = "Customer for the current deployment"
type = string
default = ""
}
variable "tags" {
description = "Default tags to add to resources"
type = map(any)
default = {}
}
# bellow are specific modules variables
variable "public_key" {
description = "Public key content"
type = string
}
variable "ovh_use_old_ssh_keys" {
description = "Use old ssh keys behavior (true) or new one (false). Previous behabvior was not linked to openstack ssh-keys. New one does."
type = bool
default = true # let true be the default for compatibility with previous code
}