-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
41 lines (32 loc) · 809 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
38
39
40
variable "db_admin_pass" {
"description" = "MariaDB root password: "
}
variable "db_name" {
"description" = "MariaDB application name: "
"default" = "owncloud"
}
variable "db_user" {
"description" = "MariaDB application user: "
"default" = "owncloud"
}
variable "db_pass" {
"description" = "MariaDB application password: "
}
variable "do_token" {
"description" = "DigitalOcean Token: "
}
variable "do_droplet_name" {
"description" = "DigitalOcean Droplet Name: "
"default" = "owncloud"
}
variable "do_droplet_region" {
"description" = "DigitalOcean Droplet Region: "
"default" = "nyc1"
}
variable "do_droplet_size" {
"description" = "DigitalOcean Droplet Size: "
"default" = "512mb"
}
variable "do_ssh_key" {
"description" = "DigitalOcean SSH Key (fingerprint or id): "
}