-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
51 lines (42 loc) · 1.22 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
variable "prefix" {
description = "The prefix for all resources"
default = "example"
type = string
}
variable "kubernetes_version" {
description = "The version of the Kubernetes cluster."
type = string
default = "1.29.1"
}
variable "node_type" {
description = "The commercial type of the pool instances. Instances with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). external is a special node type used to provision from other Cloud providers."
type = string
default = "DEV1-M"
}
variable "pool_size" {
description = "The size of the pool"
type = number
default = 1
}
variable "subnet_cidr" {
description = "The IPv4 subnet to associate with the private network."
type = string
default = "192.168.0.0/22"
}
variable "region" {
description = "The region that will be used as default value for all resources. (fr-par if none specified)"
type = string
default = "fr-par"
}
variable "secret_key" {
description = "Scaleway secret key"
type = string
}
variable "access_key" {
description = "Scaleway access key"
type = string
}
variable "project_id" {
description = "Project ID"
type = string
}