-
Notifications
You must be signed in to change notification settings - Fork 33
/
variables.tf
33 lines (28 loc) · 1.02 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
variable "operator_role_prefix" {
type = string
default = null
description = "User-defined prefix for generated AWS operator policies. Use \"account-role-prefix\" in case no value provided."
}
variable "account_role_prefix" {
type = string
description = "User-defined prefix for all generated AWS resources."
}
variable "path" {
type = string
default = "/"
description = "The ARN path for the account/operator roles as well as their policies. Must use the same path used for \"account_iam_roles\"."
}
variable "permissions_boundary" {
type = string
default = ""
description = "The ARN of the policy that is used to set the permissions boundary for the IAM roles in STS clusters."
}
variable "tags" {
type = map(string)
default = null
description = "List of AWS resource tags to apply."
}
variable "oidc_endpoint_url" {
type = string
description = "Registered OIDC configuration issuer URL, added as the trusted relationship to the operator roles."
}