-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
30 lines (26 loc) · 830 Bytes
/
variables.tf
File metadata and controls
30 lines (26 loc) · 830 Bytes
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
variable "common_providers" {
description = "List of common well-known providers to enable, such as github, gitlab"
type = list(string)
default = []
}
variable "custom_providers" {
description = "Map of custom provider configurations"
type = map(object({
name = optional(string, null)
url = string
client_id_list = list(string)
thumbprint_list = optional(list(string), [])
lookup_thumbprint = optional(bool, true)
}))
default = {}
}
variable "tags" {
description = "Map of tags to apply to all resources"
type = map(string)
default = {}
}
variable "provider_tags" {
description = "Nested map of tags to apply to specific providers. Top level keys should match provider names"
type = map(map(string))
default = {}
}