-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvariables.tf
More file actions
34 lines (29 loc) · 801 Bytes
/
variables.tf
File metadata and controls
34 lines (29 loc) · 801 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
30
31
32
33
34
variable "iam_group_name" {
default = "okta-sso"
description = "Name of the IAM group Okta IAM policies will be attached to"
type = string
}
variable "iam_user_name" {
default = "okta-sso"
description = "Username for the Okta service account"
type = string
}
variable "kms_key_id" {
default = ""
description = "kms key id to encrypt Okta Secret"
type = string
}
variable "saml_providers" {
description = "A map of SAML provider names and metadata"
type = map(string)
}
variable "tags" {
default = {}
description = "Tags to apply to supported resources"
type = map(string)
}
variable "create_okta_iam_user" {
description = "Create IAM user for Okta and related resources"
type = bool
default = true
}