forked from kbst/terraform-kubestack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
38 lines (31 loc) · 768 Bytes
/
variables.tf
File metadata and controls
38 lines (31 loc) · 768 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
variable "name_prefix" {
type = string
description = "String to prefix the name with."
}
variable "base_domain" {
type = string
description = "Domain to use for the cluster."
}
variable "provider_name" {
type = string
description = "Name of the cloud provider."
}
variable "provider_region" {
type = string
description = "Name of the region."
}
variable "workspace" {
type = string
description = "Name of the current workspace."
default = ""
}
variable "delimiter" {
type = string
description = "Delimiter used between parts."
default = "-"
}
variable "label_namespace" {
type = string
description = "Prefix labels are namespaced with."
default = "kubestack.com/"
}