-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
55 lines (46 loc) · 1.49 KB
/
variables.tf
File metadata and controls
55 lines (46 loc) · 1.49 KB
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
variable "name" {
description = "Name to be used on all the resources as identifier"
type = string
}
variable "idp_tls_url" {
description = "The TLS URL of the identity provider"
type = string
# Avoid using https scheme because the Hashicorp TLS provider has started following redirects starting from v4.
# See https://github.com/hashicorp/terraform-provider-tls/issues/249
}
variable "idp_url" {
description = "The URL of the identity provider. Corresponds to the iss claim"
type = string
}
variable "client_id" {
description = "This is the value that's sent as the client_id parameter on OAuth requests"
type = string
}
variable "subjects" {
description = "List of OIDC subjects that are permitted by the trust policy"
type = list(string)
}
variable "description" {
description = "OIDC role description"
type = string
default = null
}
variable "permissions_boundary_arn" {
description = "Permissions boundary ARN to use for the OIDC role"
type = string
default = null
}
variable "force_detach_policies" {
description = "Whether policies should be detached from the OIDC role when destroying"
type = bool
default = true
}
variable "deploy_role_arns" {
description = "ARNs of the roles the OIDC role can assume for deployment purposes"
type = list(string)
}
variable "tags" {
description = "A map of additional tags to add to all resources"
type = map(string)
default = {}
}