-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
34 lines (34 loc) · 868 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 "aws_access_key" {
description = "required: AWS Access Key"
}
variable "aws_secret_key" {
description = "required: AWS Secret Key"
}
variable "dns_dev_zone" {
description = "required: public DNS zone"
}
variable "vps_list" {
description = <<EOT
list of VPSs names should be the same as var.server_image.
example {
"ubuntu_16" = 1
"debian_9" = 1
"centos_7" = 1
"ubuntu_18" = 1
"debian_10" = 1
"centos_8" = 1
"fedora_31" = 1
}
EOT
type = map(any)
}
variable "dev_user" {
description = "postfix in hostname like dev$N-username"
}
variable "hcloud_token" {
description = "Access token to hcloud API"
}
variable "tags" {
description = "Tags to VPS. User-defined labels map (key-value pairs)"
type = map(string)
}