-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
89 lines (75 loc) · 2.64 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
variable "create_oidc_provider" {
description = "Whether or not to create the associated oidc provider. If false, variable 'oidc_provider_arn' is required"
type = bool
default = true
}
variable "create_oidc_role" {
description = "Whether or not to create the OIDC attached role"
type = bool
default = true
}
variable "url" {
description = "GitLab OpenID TLS certificate URL. The address of your GitLab instance, such as https://gitlab.com or http://gitlab.example.com."
type = string
default = "https://gitlab.com"
}
variable "tags" {
description = "A mapping of tags to assign to all resources"
type = map(string)
default = {}
}
variable "role_name" {
description = "(Optional, Forces new resource) Friendly name of the role."
type = string
default = "gitlab-oidc-provider-aws"
}
variable "role_description" {
description = "(Optional) Description of the role."
type = string
default = "Role assumed by the Gitlab OIDC provider."
}
variable "repositories" {
description = "List of GitLab organization/repository names authorized to assume the role."
type = list(string)
default = []
validation {
# Ensures each element of github_repositories list matches the
# organization/repository format used by GitHub.
condition = length([
for repo in var.repositories : 1
if length(regexall("^project_path:[A-Za-z0-9_.-]+?/([A-Za-z0-9_.:/-]+|\\*)$", repo)) > 0
]) == length(var.repositories)
error_message = "Repositories must be specified in the organization/repository format."
}
}
variable "max_session_duration" {
description = "Maximum session duration in seconds."
type = number
default = 3600
validation {
condition = var.max_session_duration >= 3600 && var.max_session_duration <= 43200
error_message = "Maximum session duration must be between 3600 and 43200 seconds."
}
}
variable "oidc_role_attach_policies" {
description = "Attach policies to OIDC role."
type = list(string)
default = []
}
variable "match_field" {
type = string
default = "sub"
}
variable "gitlab_url" {
type = string
default = "https://gitlab.com"
}
variable "gitlab_tls_url" {
type = string
default = "tls://gitlab.com:443"
}
variable "aud_value" {
description = "(Required) A list of client IDs (also known as audiences). When a mobile or web app registers with an OpenID Connect provider, they establish a value that identifies the application. (This is the value that's sent as the client_id parameter on OAuth requests.)"
type = list(string)
default = ["https://gitlab.com"]
}