okta logo
Okta v3.21.0, Mar 15 23

okta.app.getSaml

Use this data source to retrieve an SAML application from Okta.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Okta = Pulumi.Okta;

return await Deployment.RunAsync(() => 
{
    var example = Okta.App.GetSaml.Invoke(new()
    {
        Label = "Example App",
    });

});
package main

import (
	"github.com/pulumi/pulumi-okta/sdk/v3/go/okta/app"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := app.LookupSaml(ctx, &app.LookupSamlArgs{
			Label: pulumi.StringRef("Example App"),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.okta.app.AppFunctions;
import com.pulumi.okta.app.inputs.GetSamlArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var example = AppFunctions.getSaml(GetSamlArgs.builder()
            .label("Example App")
            .build());

    }
}
import pulumi
import pulumi_okta as okta

example = okta.app.get_saml(label="Example App")
import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";

const example = okta.app.getSaml({
    label: "Example App",
});
variables:
  example:
    fn::invoke:
      Function: okta:app:getSaml
      Arguments:
        label: Example App

Using getSaml

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getSaml(args: GetSamlArgs, opts?: InvokeOptions): Promise<GetSamlResult>
function getSamlOutput(args: GetSamlOutputArgs, opts?: InvokeOptions): Output<GetSamlResult>
def get_saml(active_only: Optional[bool] = None,
             id: Optional[str] = None,
             label: Optional[str] = None,
             label_prefix: Optional[str] = None,
             request_compressed: Optional[bool] = None,
             skip_groups: Optional[bool] = None,
             skip_users: Optional[bool] = None,
             opts: Optional[InvokeOptions] = None) -> GetSamlResult
def get_saml_output(active_only: Optional[pulumi.Input[bool]] = None,
             id: Optional[pulumi.Input[str]] = None,
             label: Optional[pulumi.Input[str]] = None,
             label_prefix: Optional[pulumi.Input[str]] = None,
             request_compressed: Optional[pulumi.Input[bool]] = None,
             skip_groups: Optional[pulumi.Input[bool]] = None,
             skip_users: Optional[pulumi.Input[bool]] = None,
             opts: Optional[InvokeOptions] = None) -> Output[GetSamlResult]
func LookupSaml(ctx *Context, args *LookupSamlArgs, opts ...InvokeOption) (*LookupSamlResult, error)
func LookupSamlOutput(ctx *Context, args *LookupSamlOutputArgs, opts ...InvokeOption) LookupSamlResultOutput

> Note: This function is named LookupSaml in the Go SDK.

public static class GetSaml 
{
    public static Task<GetSamlResult> InvokeAsync(GetSamlArgs args, InvokeOptions? opts = null)
    public static Output<GetSamlResult> Invoke(GetSamlInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSamlResult> getSaml(GetSamlArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: okta:app/getSaml:getSaml
  arguments:
    # arguments dictionary

The following arguments are supported:

ActiveOnly bool

tells the provider to query for only ACTIVE applications.

Id string

id of application to retrieve, conflicts with label and label_prefix.

Label string

The label of the app to retrieve, conflicts with label_prefix and id. Label uses the ?q=<label> query parameter exposed by Okta's API. It should be noted that at this time this searches both name and label. This is used to avoid paginating through all applications.

LabelPrefix string

Label prefix of the app to retrieve, conflicts with label and id. This will tell the provider to do a starts with query as opposed to an equals query.

RequestCompressed bool

Denotes whether the request is compressed or not.

SkipGroups bool

Indicator that allows the app to skip groups sync. Default is false.

SkipUsers bool

Indicator that allows the app to skip users sync. Default is false.

ActiveOnly bool

tells the provider to query for only ACTIVE applications.

Id string

id of application to retrieve, conflicts with label and label_prefix.

Label string

The label of the app to retrieve, conflicts with label_prefix and id. Label uses the ?q=<label> query parameter exposed by Okta's API. It should be noted that at this time this searches both name and label. This is used to avoid paginating through all applications.

LabelPrefix string

Label prefix of the app to retrieve, conflicts with label and id. This will tell the provider to do a starts with query as opposed to an equals query.

RequestCompressed bool

Denotes whether the request is compressed or not.

SkipGroups bool

Indicator that allows the app to skip groups sync. Default is false.

SkipUsers bool

Indicator that allows the app to skip users sync. Default is false.

activeOnly Boolean

tells the provider to query for only ACTIVE applications.

id String

id of application to retrieve, conflicts with label and label_prefix.

label String

The label of the app to retrieve, conflicts with label_prefix and id. Label uses the ?q=<label> query parameter exposed by Okta's API. It should be noted that at this time this searches both name and label. This is used to avoid paginating through all applications.

labelPrefix String

Label prefix of the app to retrieve, conflicts with label and id. This will tell the provider to do a starts with query as opposed to an equals query.

requestCompressed Boolean

Denotes whether the request is compressed or not.

skipGroups Boolean

Indicator that allows the app to skip groups sync. Default is false.

skipUsers Boolean

Indicator that allows the app to skip users sync. Default is false.

activeOnly boolean

tells the provider to query for only ACTIVE applications.

id string

id of application to retrieve, conflicts with label and label_prefix.

label string

The label of the app to retrieve, conflicts with label_prefix and id. Label uses the ?q=<label> query parameter exposed by Okta's API. It should be noted that at this time this searches both name and label. This is used to avoid paginating through all applications.

labelPrefix string

Label prefix of the app to retrieve, conflicts with label and id. This will tell the provider to do a starts with query as opposed to an equals query.

requestCompressed boolean

Denotes whether the request is compressed or not.

skipGroups boolean

Indicator that allows the app to skip groups sync. Default is false.

skipUsers boolean

Indicator that allows the app to skip users sync. Default is false.

active_only bool

tells the provider to query for only ACTIVE applications.

id str

id of application to retrieve, conflicts with label and label_prefix.

label str

The label of the app to retrieve, conflicts with label_prefix and id. Label uses the ?q=<label> query parameter exposed by Okta's API. It should be noted that at this time this searches both name and label. This is used to avoid paginating through all applications.

label_prefix str

Label prefix of the app to retrieve, conflicts with label and id. This will tell the provider to do a starts with query as opposed to an equals query.

request_compressed bool

Denotes whether the request is compressed or not.

skip_groups bool

Indicator that allows the app to skip groups sync. Default is false.

skip_users bool

Indicator that allows the app to skip users sync. Default is false.

activeOnly Boolean

tells the provider to query for only ACTIVE applications.

id String

id of application to retrieve, conflicts with label and label_prefix.

label String

The label of the app to retrieve, conflicts with label_prefix and id. Label uses the ?q=<label> query parameter exposed by Okta's API. It should be noted that at this time this searches both name and label. This is used to avoid paginating through all applications.

labelPrefix String

Label prefix of the app to retrieve, conflicts with label and id. This will tell the provider to do a starts with query as opposed to an equals query.

requestCompressed Boolean

Denotes whether the request is compressed or not.

skipGroups Boolean

Indicator that allows the app to skip groups sync. Default is false.

skipUsers Boolean

Indicator that allows the app to skip users sync. Default is false.

getSaml Result

The following output properties are available:

AccessibilityErrorRedirectUrl string

Custom error page URL.

AccessibilityLoginRedirectUrl string

Custom login page URL.

AccessibilitySelfService bool

Enable self-service.

AcsEndpoints List<string>

An array of ACS endpoints. You can configure a maximum of 100 endpoints.

AppSettingsJson string

Application settings in JSON format.

AssertionSigned bool

Determines whether the SAML assertion is digitally signed.

AttributeStatements List<GetSamlAttributeStatement>

List of SAML Attribute statements.

Audience string

Audience restriction.

AuthnContextClassRef string

Identifies the SAML authentication context class for the assertion’s authentication statement.

AutoSubmitToolbar bool

Display auto submit toolbar.

DefaultRelayState string

Identifies a specific application resource in an IDP initiated SSO scenario.

Destination string

Identifies the location where the SAML response is intended to be sent inside the SAML assertion.

DigestAlgorithm string

Determines the digest algorithm used to digitally sign the SAML assertion and response.

Features List<string>

features enabled.

Groups List<string>

List of groups IDs assigned to the application.

Deprecated:

The groups field is now deprecated for the data source okta_app_saml, please replace all uses of this with: okta_app_group_assignments

HideIos bool

Do not display application icon on mobile app.

HideWeb bool

Do not display application icon to users

HonorForceAuthn bool

Prompt user to re-authenticate if SP asks for it.

IdpIssuer string

SAML issuer ID.

InlineHookId string

Saml Inline Hook associated with the application.

KeyId string

Certificate key ID.

Links string

Generic JSON containing discoverable resources related to the app.

Name string

name of application.

Recipient string

The location where the app may present the SAML assertion.

ResponseSigned bool

Determines whether the SAML auth response message is digitally signed.

SamlSignedRequestEnabled bool

SAML Signed Request enabled

SignatureAlgorithm string

Signature algorithm used ot digitally sign the assertion and response.

SingleLogoutCertificate string

x509 encoded certificate that the Service Provider uses to sign Single Logout requests.

SingleLogoutIssuer string

The issuer of the Service Provider that generates the Single Logout request.

SingleLogoutUrl string

The location where the logout response is sent.

SpIssuer string

SAML service provider issuer.

SsoUrl string

Single Sign-on Url.

Status string

status of application.

SubjectNameIdFormat string

Identifies the SAML processing rules.

SubjectNameIdTemplate string

Template for app user's username when a user is assigned to the app.

UserNameTemplate string

Username template.

UserNameTemplatePushStatus string

Push username on update.

UserNameTemplateSuffix string

Username template suffix.

UserNameTemplateType string

Username template type.

Users List<string>

List of users IDs assigned to the application.

Deprecated:

The users field is now deprecated for the data source okta_app_saml, please replace all uses of this with: okta_app_user_assignments

ActiveOnly bool
Id string

id of application.

Label string

label of application.

LabelPrefix string
RequestCompressed bool

Denotes whether the request is compressed or not.

SkipGroups bool
SkipUsers bool
AccessibilityErrorRedirectUrl string

Custom error page URL.

AccessibilityLoginRedirectUrl string

Custom login page URL.

AccessibilitySelfService bool

Enable self-service.

AcsEndpoints []string

An array of ACS endpoints. You can configure a maximum of 100 endpoints.

AppSettingsJson string

Application settings in JSON format.

AssertionSigned bool

Determines whether the SAML assertion is digitally signed.

AttributeStatements []GetSamlAttributeStatement

List of SAML Attribute statements.

Audience string

Audience restriction.

AuthnContextClassRef string

Identifies the SAML authentication context class for the assertion’s authentication statement.

AutoSubmitToolbar bool

Display auto submit toolbar.

DefaultRelayState string

Identifies a specific application resource in an IDP initiated SSO scenario.

Destination string

Identifies the location where the SAML response is intended to be sent inside the SAML assertion.

DigestAlgorithm string

Determines the digest algorithm used to digitally sign the SAML assertion and response.

Features []string

features enabled.

Groups []string

List of groups IDs assigned to the application.

Deprecated:

The groups field is now deprecated for the data source okta_app_saml, please replace all uses of this with: okta_app_group_assignments

HideIos bool

Do not display application icon on mobile app.

HideWeb bool

Do not display application icon to users

HonorForceAuthn bool

Prompt user to re-authenticate if SP asks for it.

IdpIssuer string

SAML issuer ID.

InlineHookId string

Saml Inline Hook associated with the application.

KeyId string

Certificate key ID.

Links string

Generic JSON containing discoverable resources related to the app.

Name string

name of application.

Recipient string

The location where the app may present the SAML assertion.

ResponseSigned bool

Determines whether the SAML auth response message is digitally signed.

SamlSignedRequestEnabled bool

SAML Signed Request enabled

SignatureAlgorithm string

Signature algorithm used ot digitally sign the assertion and response.

SingleLogoutCertificate string

x509 encoded certificate that the Service Provider uses to sign Single Logout requests.

SingleLogoutIssuer string

The issuer of the Service Provider that generates the Single Logout request.

SingleLogoutUrl string

The location where the logout response is sent.

SpIssuer string

SAML service provider issuer.

SsoUrl string

Single Sign-on Url.

Status string

status of application.

SubjectNameIdFormat string

Identifies the SAML processing rules.

SubjectNameIdTemplate string

Template for app user's username when a user is assigned to the app.

UserNameTemplate string

Username template.

UserNameTemplatePushStatus string

Push username on update.

UserNameTemplateSuffix string

Username template suffix.

UserNameTemplateType string

Username template type.

Users []string

List of users IDs assigned to the application.

Deprecated:

The users field is now deprecated for the data source okta_app_saml, please replace all uses of this with: okta_app_user_assignments

ActiveOnly bool
Id string

id of application.

Label string

label of application.

LabelPrefix string
RequestCompressed bool

Denotes whether the request is compressed or not.

SkipGroups bool
SkipUsers bool
accessibilityErrorRedirectUrl String

Custom error page URL.

accessibilityLoginRedirectUrl String

Custom login page URL.

accessibilitySelfService Boolean

Enable self-service.

acsEndpoints List<String>

An array of ACS endpoints. You can configure a maximum of 100 endpoints.

appSettingsJson String

Application settings in JSON format.

assertionSigned Boolean

Determines whether the SAML assertion is digitally signed.

attributeStatements List<GetSamlAttributeStatement>

List of SAML Attribute statements.

audience String

Audience restriction.

authnContextClassRef String

Identifies the SAML authentication context class for the assertion’s authentication statement.

autoSubmitToolbar Boolean

Display auto submit toolbar.

defaultRelayState String

Identifies a specific application resource in an IDP initiated SSO scenario.

destination String

Identifies the location where the SAML response is intended to be sent inside the SAML assertion.

digestAlgorithm String

Determines the digest algorithm used to digitally sign the SAML assertion and response.

features List<String>

features enabled.

groups List<String>

List of groups IDs assigned to the application.

Deprecated:

The groups field is now deprecated for the data source okta_app_saml, please replace all uses of this with: okta_app_group_assignments

hideIos Boolean

Do not display application icon on mobile app.

hideWeb Boolean

Do not display application icon to users

honorForceAuthn Boolean

Prompt user to re-authenticate if SP asks for it.

idpIssuer String

SAML issuer ID.

inlineHookId String

Saml Inline Hook associated with the application.

keyId String

Certificate key ID.

links String

Generic JSON containing discoverable resources related to the app.

name String

name of application.

recipient String

The location where the app may present the SAML assertion.

responseSigned Boolean

Determines whether the SAML auth response message is digitally signed.

samlSignedRequestEnabled Boolean

SAML Signed Request enabled

signatureAlgorithm String

Signature algorithm used ot digitally sign the assertion and response.

singleLogoutCertificate String

x509 encoded certificate that the Service Provider uses to sign Single Logout requests.

singleLogoutIssuer String

The issuer of the Service Provider that generates the Single Logout request.

singleLogoutUrl String

The location where the logout response is sent.

spIssuer String

SAML service provider issuer.

ssoUrl String

Single Sign-on Url.

status String

status of application.

subjectNameIdFormat String

Identifies the SAML processing rules.

subjectNameIdTemplate String

Template for app user's username when a user is assigned to the app.

userNameTemplate String

Username template.

userNameTemplatePushStatus String

Push username on update.

userNameTemplateSuffix String

Username template suffix.

userNameTemplateType String

Username template type.

users List<String>

List of users IDs assigned to the application.

Deprecated:

The users field is now deprecated for the data source okta_app_saml, please replace all uses of this with: okta_app_user_assignments

activeOnly Boolean
id String

id of application.

label String

label of application.

labelPrefix String
requestCompressed Boolean

Denotes whether the request is compressed or not.

skipGroups Boolean
skipUsers Boolean
accessibilityErrorRedirectUrl string

Custom error page URL.

accessibilityLoginRedirectUrl string

Custom login page URL.

accessibilitySelfService boolean

Enable self-service.

acsEndpoints string[]

An array of ACS endpoints. You can configure a maximum of 100 endpoints.

appSettingsJson string

Application settings in JSON format.

assertionSigned boolean

Determines whether the SAML assertion is digitally signed.

attributeStatements GetSamlAttributeStatement[]

List of SAML Attribute statements.

audience string

Audience restriction.

authnContextClassRef string

Identifies the SAML authentication context class for the assertion’s authentication statement.

autoSubmitToolbar boolean

Display auto submit toolbar.

defaultRelayState string

Identifies a specific application resource in an IDP initiated SSO scenario.

destination string

Identifies the location where the SAML response is intended to be sent inside the SAML assertion.

digestAlgorithm string

Determines the digest algorithm used to digitally sign the SAML assertion and response.

features string[]

features enabled.

groups string[]

List of groups IDs assigned to the application.

Deprecated:

The groups field is now deprecated for the data source okta_app_saml, please replace all uses of this with: okta_app_group_assignments

hideIos boolean

Do not display application icon on mobile app.

hideWeb boolean

Do not display application icon to users

honorForceAuthn boolean

Prompt user to re-authenticate if SP asks for it.

idpIssuer string

SAML issuer ID.

inlineHookId string

Saml Inline Hook associated with the application.

keyId string

Certificate key ID.

links string

Generic JSON containing discoverable resources related to the app.

name string

name of application.

recipient string

The location where the app may present the SAML assertion.

responseSigned boolean

Determines whether the SAML auth response message is digitally signed.

samlSignedRequestEnabled boolean

SAML Signed Request enabled

signatureAlgorithm string

Signature algorithm used ot digitally sign the assertion and response.

singleLogoutCertificate string

x509 encoded certificate that the Service Provider uses to sign Single Logout requests.

singleLogoutIssuer string

The issuer of the Service Provider that generates the Single Logout request.

singleLogoutUrl string

The location where the logout response is sent.

spIssuer string

SAML service provider issuer.

ssoUrl string

Single Sign-on Url.

status string

status of application.

subjectNameIdFormat string

Identifies the SAML processing rules.

subjectNameIdTemplate string

Template for app user's username when a user is assigned to the app.

userNameTemplate string

Username template.

userNameTemplatePushStatus string

Push username on update.

userNameTemplateSuffix string

Username template suffix.

userNameTemplateType string

Username template type.

users string[]

List of users IDs assigned to the application.

Deprecated:

The users field is now deprecated for the data source okta_app_saml, please replace all uses of this with: okta_app_user_assignments

activeOnly boolean
id string

id of application.

label string

label of application.

labelPrefix string
requestCompressed boolean

Denotes whether the request is compressed or not.

skipGroups boolean
skipUsers boolean
accessibility_error_redirect_url str

Custom error page URL.

accessibility_login_redirect_url str

Custom login page URL.

accessibility_self_service bool

Enable self-service.

acs_endpoints Sequence[str]

An array of ACS endpoints. You can configure a maximum of 100 endpoints.

app_settings_json str

Application settings in JSON format.

assertion_signed bool

Determines whether the SAML assertion is digitally signed.

attribute_statements Sequence[GetSamlAttributeStatement]

List of SAML Attribute statements.

audience str

Audience restriction.

authn_context_class_ref str

Identifies the SAML authentication context class for the assertion’s authentication statement.

auto_submit_toolbar bool

Display auto submit toolbar.

default_relay_state str

Identifies a specific application resource in an IDP initiated SSO scenario.

destination str

Identifies the location where the SAML response is intended to be sent inside the SAML assertion.

digest_algorithm str

Determines the digest algorithm used to digitally sign the SAML assertion and response.

features Sequence[str]

features enabled.

groups Sequence[str]

List of groups IDs assigned to the application.

Deprecated:

The groups field is now deprecated for the data source okta_app_saml, please replace all uses of this with: okta_app_group_assignments

hide_ios bool

Do not display application icon on mobile app.

hide_web bool

Do not display application icon to users

honor_force_authn bool

Prompt user to re-authenticate if SP asks for it.

idp_issuer str

SAML issuer ID.

inline_hook_id str

Saml Inline Hook associated with the application.

key_id str

Certificate key ID.

links str

Generic JSON containing discoverable resources related to the app.

name str

name of application.

recipient str

The location where the app may present the SAML assertion.

response_signed bool

Determines whether the SAML auth response message is digitally signed.

saml_signed_request_enabled bool

SAML Signed Request enabled

signature_algorithm str

Signature algorithm used ot digitally sign the assertion and response.

single_logout_certificate str

x509 encoded certificate that the Service Provider uses to sign Single Logout requests.

single_logout_issuer str

The issuer of the Service Provider that generates the Single Logout request.

single_logout_url str

The location where the logout response is sent.

sp_issuer str

SAML service provider issuer.

sso_url str

Single Sign-on Url.

status str

status of application.

subject_name_id_format str

Identifies the SAML processing rules.

subject_name_id_template str

Template for app user's username when a user is assigned to the app.

user_name_template str

Username template.

user_name_template_push_status str

Push username on update.

user_name_template_suffix str

Username template suffix.

user_name_template_type str

Username template type.

users Sequence[str]

List of users IDs assigned to the application.

Deprecated:

The users field is now deprecated for the data source okta_app_saml, please replace all uses of this with: okta_app_user_assignments

active_only bool
id str

id of application.

label str

label of application.

label_prefix str
request_compressed bool

Denotes whether the request is compressed or not.

skip_groups bool
skip_users bool
accessibilityErrorRedirectUrl String

Custom error page URL.

accessibilityLoginRedirectUrl String

Custom login page URL.

accessibilitySelfService Boolean

Enable self-service.

acsEndpoints List<String>

An array of ACS endpoints. You can configure a maximum of 100 endpoints.

appSettingsJson String

Application settings in JSON format.

assertionSigned Boolean

Determines whether the SAML assertion is digitally signed.

attributeStatements List<Property Map>

List of SAML Attribute statements.

audience String

Audience restriction.

authnContextClassRef String

Identifies the SAML authentication context class for the assertion’s authentication statement.

autoSubmitToolbar Boolean

Display auto submit toolbar.

defaultRelayState String

Identifies a specific application resource in an IDP initiated SSO scenario.

destination String

Identifies the location where the SAML response is intended to be sent inside the SAML assertion.

digestAlgorithm String

Determines the digest algorithm used to digitally sign the SAML assertion and response.

features List<String>

features enabled.

groups List<String>

List of groups IDs assigned to the application.

Deprecated:

The groups field is now deprecated for the data source okta_app_saml, please replace all uses of this with: okta_app_group_assignments

hideIos Boolean

Do not display application icon on mobile app.

hideWeb Boolean

Do not display application icon to users

honorForceAuthn Boolean

Prompt user to re-authenticate if SP asks for it.

idpIssuer String

SAML issuer ID.

inlineHookId String

Saml Inline Hook associated with the application.

keyId String

Certificate key ID.

links String

Generic JSON containing discoverable resources related to the app.

name String

name of application.

recipient String

The location where the app may present the SAML assertion.

responseSigned Boolean

Determines whether the SAML auth response message is digitally signed.

samlSignedRequestEnabled Boolean

SAML Signed Request enabled

signatureAlgorithm String

Signature algorithm used ot digitally sign the assertion and response.

singleLogoutCertificate String

x509 encoded certificate that the Service Provider uses to sign Single Logout requests.

singleLogoutIssuer String

The issuer of the Service Provider that generates the Single Logout request.

singleLogoutUrl String

The location where the logout response is sent.

spIssuer String

SAML service provider issuer.

ssoUrl String

Single Sign-on Url.

status String

status of application.

subjectNameIdFormat String

Identifies the SAML processing rules.

subjectNameIdTemplate String

Template for app user's username when a user is assigned to the app.

userNameTemplate String

Username template.

userNameTemplatePushStatus String

Push username on update.

userNameTemplateSuffix String

Username template suffix.

userNameTemplateType String

Username template type.

users List<String>

List of users IDs assigned to the application.

Deprecated:

The users field is now deprecated for the data source okta_app_saml, please replace all uses of this with: okta_app_user_assignments

activeOnly Boolean
id String

id of application.

label String

label of application.

labelPrefix String
requestCompressed Boolean

Denotes whether the request is compressed or not.

skipGroups Boolean
skipUsers Boolean

Supporting Types

GetSamlAttributeStatement

FilterType string

Type of group attribute filter.

FilterValue string

Filter value to use.

Name string

name of application.

Namespace string

The attribute namespace.

Type string

The type of attribute statement value.

Values List<string>

Array of values to use.

FilterType string

Type of group attribute filter.

FilterValue string

Filter value to use.

Name string

name of application.

Namespace string

The attribute namespace.

Type string

The type of attribute statement value.

Values []string

Array of values to use.

filterType String

Type of group attribute filter.

filterValue String

Filter value to use.

name String

name of application.

namespace String

The attribute namespace.

type String

The type of attribute statement value.

values List<String>

Array of values to use.

filterType string

Type of group attribute filter.

filterValue string

Filter value to use.

name string

name of application.

namespace string

The attribute namespace.

type string

The type of attribute statement value.

values string[]

Array of values to use.

filter_type str

Type of group attribute filter.

filter_value str

Filter value to use.

name str

name of application.

namespace str

The attribute namespace.

type str

The type of attribute statement value.

values Sequence[str]

Array of values to use.

filterType String

Type of group attribute filter.

filterValue String

Filter value to use.

name String

name of application.

namespace String

The attribute namespace.

type String

The type of attribute statement value.

values List<String>

Array of values to use.

Package Details

Repository
Okta pulumi/pulumi-okta
License
Apache-2.0
Notes

This Pulumi package is based on the okta Terraform Provider.