-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
35 lines (31 loc) · 982 Bytes
/
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
variable "name" {
description = "The name for the GitLabPipelinesIntegration resource."
type = string
}
variable "namespace" {
description = "Kubernetes namespace where the GitLabPipelinesIntegration will be created."
type = string
}
variable "gitlab_url" {
description = "Designates the URL of your GitLab instance."
type = string
}
variable "service_account_permissions" {
description = "Contains capabilities of the Integration Service Account, which may be utilized for managing GitLab runners."
type = object({
read_pipeline_namespace_secrets = bool
manage_claim_namespace_secrets = bool
})
default = {
read_pipeline_namespace_secrets = false
manage_claim_namespace_secrets = false
}
}
variable "resources" {
description = "Defines the settings for managing resources of pipeline jobs."
type = object({
persistentStorage = optional(object({
cacheRetentionTime = optional(number)
}))
})
}