forked from coder/coder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tf
More file actions
47 lines (40 loc) · 702 Bytes
/
Copy pathmain.tf
File metadata and controls
47 lines (40 loc) · 702 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
terraform {
required_providers {
coder = {
source = "coder/coder"
version = "2.5.3"
}
}
}
module "jetbrains_gateway" {
source = "jetbrains_gateway"
}
data "coder_parameter" "region" {
name = "region"
display_name = "Where would you like to travel to next?"
type = "string"
form_type = "dropdown"
mutable = true
default = "na"
order = 1000
option {
name = "North America"
value = "na"
}
option {
name = "South America"
value = "sa"
}
option {
name = "Europe"
value = "eu"
}
option {
name = "Africa"
value = "af"
}
option {
name = "Asia"
value = "as"
}
}