I have the below Terraform script (using a module) to create apps in our Okta instance. However, I can’t find anywhere on how to modify the “logon initiated by” value… am I missing something?
module "app" {
source = "./modules/apps"
label = "TruConnect"
type = "web"
grant_types = ["authorization_code","implicit"]
redirect_uris = ["https://www.google.com"]
response_types = ["token", "id_token", "code"]
auto_redirect = "true"
hide_web = "false"
}