This repository has been archived by the owner on Jul 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
90 lines (73 loc) · 1.96 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
variable "imagerepo" {
description = "Image for the repository"
type = string
default = "ghcr.io/external-secrets/external-secrets"
}
variable "cluster_name" {
description = "Name of EKS cluster"
}
variable "cluster_endpoint" {
description = "Endpoint for EKS cluster"
}
variable "cluster_certificate_authority_data" {
description = "CA certificate data for EKS cluster"
}
variable "helm_namespace" {
description = "Namespace for Helm chart"
default = "external-secrets"
}
variable "helm_name" {
description = "Name for Helm release"
default = "external-secrets"
}
variable "tolerations" {
type = list(any)
default = []
}
variable "iam_path" {
description = "Path of IAM role"
type = string
default = "/delegatedadmin/developer/"
}
variable "oidc_provider_arn" {
type = string
}
variable "permissions_boundary" {
description = "Permissions boundary ARN to use for IAM role"
type = string
}
variable "serviceAccountName" {
description = "Service account for the ESO to connect to AWS IAM"
type = string
default = "ub-imagepull-es"
}
variable "external_secrets_service_accounts" {
type = list(string)
default = [
"external-secrets:ub-imagepull-es"
]
}
variable "enable_gitlab_secret_arns" {
description = "DEPRECATED: when set to true enables creation of IAM policies for GitLab secrets. Use additional_secret_names instead."
type = bool
default = false
}
variable "enable_defectdojo_secret_arns" {
description = "DEPRECATED: when set to true enables creation of IAM policies for DefectDojo secrets. Use additional_secret_names instead."
type = bool
default = false
}
variable "additional_secret_names" {
description = "A list of additional secret names to create IAM policies for."
type = list(string)
default = []
}
variable "aws_region" {
type = string
}
variable "aws_id" {
type = string
}
variable "env" {
type = string
}