-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathvariables.tf
More file actions
68 lines (56 loc) · 1.17 KB
/
variables.tf
File metadata and controls
68 lines (56 loc) · 1.17 KB
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
66
67
68
variable "portainer_url" {
description = "Default Portainer URL"
type = string
# default = "http://localhost:9000"
}
variable "portainer_api_key" {
description = "Default Portainer Admin API Key"
type = string
sensitive = true
# default = "your-api-key-from-portainer"
}
variable "cloud_provider" {
type = string
default = "digitalocean"
description = "Cloud provider to use for provisioning (e.g., digitalocean, civo, linode, amazon, azure, gke)"
}
variable "do_credential_id" {
type = number
default = 1
}
variable "do_name" {
type = string
default = "do-dev-cluster"
}
variable "do_region" {
type = string
default = "nyc1"
}
variable "do_node_count" {
type = number
default = 3
}
variable "do_node_size" {
type = string
default = "s-2vcpu-4gb"
}
variable "do_network_id" {
type = string
default = "1234-abcd"
}
variable "do_kubernetes_version" {
type = string
default = "1.25.0"
}
variable "do_group_id" {
type = number
default = 1
}
variable "do_stack_name" {
type = string
default = "dev"
}
variable "do_tag_ids" {
type = list(number)
default = [1]
}