-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
63 lines (52 loc) · 1.54 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
###########################
# Gandi related variables #
###########################
variable "manage_dns_record_using_livedns" {
type = bool
description = "Wether to insert/delete the value of `asciinema_server_fqdn` as a DNS record in your Gandi LiveDNS zone"
default = false
}
variable "gandi_personal_access_token" {
type = string
description = "Your Personal Access Token (Only if manage_dns_record_using_livedns is true)"
default = null
sensitive = true
}
################################
# GandiCloud related variables #
################################
variable "flavor" {
type = string
default = "V-R2"
description = "Server flavor"
}
variable "image_name" {
type = string
default = "Debian 12 Bookworm"
description = "OS image to use"
}
variable "username" {
type = string
default = "debian"
description = "Username to use to login"
}
variable "admin_ssh_pubkey" {
type = string
description = "SSH key to authorize"
}
######################################
# asciinema server related variables #
######################################
variable "asciinema_version" {
type = string
default = "20230826"
description = "asciinema release name"
}
variable "asciinema_server_domain_apex" {
type = string
description = "Apex domain on which the asciinema server will be publicly exposed"
}
variable "asciinema_server_subdomain" {
type = string
description = "Subdomain on which the asciinema server will be publicly exposed"
}