Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

brand

This module creates following resources.

  • okta_brand
  • okta_domain (optional)

Requirements

Name Version
terraform >= 1.8
okta >= 4.8

Providers

Name Version
okta 4.8.1

Modules

No modules.

Resources

Name Type
okta_brand.this resource
okta_domain.this resource

Inputs

Name Description Type Default Required
name (Required) A name of the brand. string n/a yes
custom_domains (Optional) A list of configurations for the custom domains. Each block of custom_domains block as defined below.
(Required) name - The name of custom domain like id.example.com.
(Optional) type - The certificate source type that indicates whether the certificate is provided by the user or Okta. Valid values are MANUAL and OKTA_MANAGED. Defaults to OKTA_MANAGED.
list(object({
name = string
type = optional(string, "OKTA_MANAGED")
}))
[] no
custom_privacy_policy (Optional) A configurations for the custom privacy policy of the brand. custom_privacy_policy block as defined below.
(Optional) enabled - Whether to use custom privacy policy. Defaults to false.
(Optional) url - The url of the custom privacy policy.
object({
enabled = optional(bool, false)
url = optional(string)
})
{} no
locale (Optional) The preferred language for the brand. Specified as an IETF BCP 47 language tag. Defaults to en. string "en" no
powered_by_okta (Optional) Whether "Powered by Okta" appears in any visible footers. Defaults to false. bool false no

Outputs

Name Description
custom_domains The configurations for the custom domains of the brand.
custom_privacy_policy The configurations for the custom privacy policy.
id The ID of the brand.
is_default Whether this brand is default or not.
locale The preferred language for the brand.
name The name of the brand.
powered_by_okta Whether "Powered by Okta" appears in any visible footers. Defaults to false.