-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
74 lines (55 loc) · 1.46 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
variable "prefix" {
description = "Prefix of Azure resources"
}
variable "location" {
description = "Azure region for Azure resources"
}
variable "tags" {
type = map(string)
description = "List of tags to assign to Azure resources"
default = {}
}
variable "infrastructure_authorized_ip_ranges" {
type = list(string)
description = "Allowed IP addresses for infastructure components."
default = []
}
variable "infrastructure_pipeline_subnet_ids" {
type = list(string)
description = "Subnet ID of infrastructure pipeline"
default = []
}
# jFrog
variable "jfrog_join_key" {
description = "Join key for jFrog Platform"
sensitive = true
}
variable "jfrog_master_key" {
description = "Master key for jFrog Platform"
sensitive = true
}
#
# Argo CD
#
variable "argocd_operator_client_secret" {
description = "Argo CD Operator Client Secret"
sensitive = true
}
variable "minio_identity_openid_client_id" {
description = "MinIO Identity OpenID Cient ID"
}
variable "minio_identity_openid_config_url" {
description = "MinIO Identity OpenID Config URL"
}
variable "bundle_tenant_id" {
description = "The directory tenant that you want to request permission from."
sensitive = true
}
variable "bundle_client_id" {
description = "The Application (client) ID that's assigned to your app."
sensitive = true
}
variable "bundle_client_secret" {
description = "The application secret for your app."
sensitive = true
}