-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
65 lines (54 loc) · 1.59 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
64
65
variable "do_token" {
type = string
description = "Digital Ocean API token."
}
variable "domain_name" {
type = string
description = "A record value for your Digital Ocean managed domain (eg. 'mydomain.com' or 'subdomain.mydomain.com')."
}
variable "droplet_size" {
type = string
description = "Digital Ocean droplet size."
default = "s-2vcpu-2gb"
}
variable "email_address" {
type = string
description = "If set, OAuth2 Proxy will only authenticate supplied email address rather than entire org/account of the Oauth2 provider."
default = ""
}
variable "github_username" {
type = string
description = "GitHub username for importing public SSH keys associated to the GitHub account."
}
variable "hostname" {
type = string
description = "Hostname for the EC2 instance."
default = "code-server"
}
variable "oauth2_client_id" {
type = string
description = "OAuth2 client ID key for chosen OAuth2 provider."
}
variable "oauth2_client_secret" {
type = string
description = "OAuth2 client secret key for chosen OAuth2 provider."
}
variable "oauth2_provider" {
type = string
description = "OAuth2 provider."
}
variable "region" {
type = string
description = "Digital Ocean regional endpoint."
default = "sfo2"
}
variable "storage_size" {
type = number
description = "Size (in GB) for immutable volume mounted to `/home`."
default = 20
}
variable "username" {
type = string
description = "Username for the non-root user on the droplet."
default = "coder"
}