-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
65 lines (54 loc) · 1.53 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
56
57
58
59
60
61
62
63
64
65
variable "namespace" {
type = string
description = "Organization or Company Prefix"
}
variable "name" {
type = string
default = "external-dns"
description = "Name of Release and Resources"
}
variable "stage" {
type = string
default = "ci"
description = "Stage or Environment this Release is for"
}
variable "aws_region" {
type = string
description = "AWS Region used for External DNS"
}
variable "region" {
type = string
description = "Short Region Name used for Labeling and Naming"
}
variable "domain_name" {
type = string
description = "Domain Name for External DNS to create Records in"
}
variable "iam_attach_policy" {
type = bool
default = true
description = "When an existing Role is given via iam_role_arn we can attach required Policies for External DNS to work"
}
variable "iam_role_arn" {
type = string
description = "IAM Role ARN to be used to attach External DNS Permissions to"
}
variable "iam_role_external_id" {
type = string
default = ""
description = "External ID required to assume the External DNS Role"
}
variable "iam_role_trusted_arn" {
type = string
default = ""
description = "IAM ARN allowed to assume the External DNS Role"
}
variable "k8s_namespace" {
type = string
default = "default"
description = "Namespace to deploy External DNS Release into"
}
variable "certificate_email" {
type = string
description = "E-Mail used to send for example Expiry Notices to"
}