-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
55 lines (46 loc) · 1.33 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
variable "namespace" {
type = "string"
description = "Namespace (e.g. `cp` or `cloudposse`)"
}
variable "stage" {
type = "string"
description = "Stage (e.g. `prod`, `dev`, `staging`)"
}
variable "name" {
type = "string"
default = "external-dns"
description = "Name (e.g. `external-dns`)"
}
variable "delimiter" {
type = "string"
default = "-"
description = "Delimiter to be used between `namespace`, `stage`, `name` and `attributes`"
}
variable "attributes" {
type = "list"
default = []
description = "Additional attributes (e.g. `1`)"
}
variable "tags" {
type = "map"
default = {}
description = "Additional tags (e.g. map(`Cluster`,`us-east-1.cloudposse.co`)"
}
variable "cluster_name" {
type = "string"
description = "Kops cluster name (e.g. `us-east-1.cloudposse.co` or `cluster-1.cloudposse.co`)"
}
variable "dns_zone_names" {
type = "list"
description = "Names of zones to manage (e.g. `us-east-1.cloudposse.co` or `cluster-1.cloudposse.co`)"
}
variable "masters_name" {
type = "string"
default = "masters"
description = "Kops masters subdomain name in the cluster DNS zone"
}
variable "nodes_name" {
type = "string"
default = "nodes"
description = "Kops nodes subdomain name in the cluster DNS zone"
}