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:
- Active
Only bool tells the provider to query for only
ACTIVE
applications.- Id string
id
of application to retrieve, conflicts withlabel
andlabel_prefix
.- Label string
The label of the app to retrieve, conflicts with
label_prefix
andid
. Label uses the?q=<label>
query parameter exposed by Okta's API. It should be noted that at this time this searches bothname
andlabel
. This is used to avoid paginating through all applications.- Label
Prefix string Label prefix of the app to retrieve, conflicts with
label
andid
. This will tell the provider to do astarts with
query as opposed to anequals
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 isfalse
.- Skip
Users bool Indicator that allows the app to skip
users
sync. Default isfalse
.
- Active
Only bool tells the provider to query for only
ACTIVE
applications.- Id string
id
of application to retrieve, conflicts withlabel
andlabel_prefix
.- Label string
The label of the app to retrieve, conflicts with
label_prefix
andid
. Label uses the?q=<label>
query parameter exposed by Okta's API. It should be noted that at this time this searches bothname
andlabel
. This is used to avoid paginating through all applications.- Label
Prefix string Label prefix of the app to retrieve, conflicts with
label
andid
. This will tell the provider to do astarts with
query as opposed to anequals
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 isfalse
.- Skip
Users bool Indicator that allows the app to skip
users
sync. Default isfalse
.
- active
Only Boolean tells the provider to query for only
ACTIVE
applications.- id String
id
of application to retrieve, conflicts withlabel
andlabel_prefix
.- label String
The label of the app to retrieve, conflicts with
label_prefix
andid
. Label uses the?q=<label>
query parameter exposed by Okta's API. It should be noted that at this time this searches bothname
andlabel
. This is used to avoid paginating through all applications.- label
Prefix String Label prefix of the app to retrieve, conflicts with
label
andid
. This will tell the provider to do astarts with
query as opposed to anequals
query.- request
Compressed Boolean Denotes whether the request is compressed or not.
- skip
Groups Boolean Indicator that allows the app to skip
groups
sync. Default isfalse
.- skip
Users Boolean Indicator that allows the app to skip
users
sync. Default isfalse
.
- active
Only boolean tells the provider to query for only
ACTIVE
applications.- id string
id
of application to retrieve, conflicts withlabel
andlabel_prefix
.- label string
The label of the app to retrieve, conflicts with
label_prefix
andid
. Label uses the?q=<label>
query parameter exposed by Okta's API. It should be noted that at this time this searches bothname
andlabel
. This is used to avoid paginating through all applications.- label
Prefix string Label prefix of the app to retrieve, conflicts with
label
andid
. This will tell the provider to do astarts with
query as opposed to anequals
query.- request
Compressed boolean Denotes whether the request is compressed or not.
- skip
Groups boolean Indicator that allows the app to skip
groups
sync. Default isfalse
.- skip
Users boolean Indicator that allows the app to skip
users
sync. Default isfalse
.
- active_
only bool tells the provider to query for only
ACTIVE
applications.- id str
id
of application to retrieve, conflicts withlabel
andlabel_prefix
.- label str
The label of the app to retrieve, conflicts with
label_prefix
andid
. Label uses the?q=<label>
query parameter exposed by Okta's API. It should be noted that at this time this searches bothname
andlabel
. This is used to avoid paginating through all applications.- label_
prefix str Label prefix of the app to retrieve, conflicts with
label
andid
. This will tell the provider to do astarts with
query as opposed to anequals
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 isfalse
.- skip_
users bool Indicator that allows the app to skip
users
sync. Default isfalse
.
- active
Only Boolean tells the provider to query for only
ACTIVE
applications.- id String
id
of application to retrieve, conflicts withlabel
andlabel_prefix
.- label String
The label of the app to retrieve, conflicts with
label_prefix
andid
. Label uses the?q=<label>
query parameter exposed by Okta's API. It should be noted that at this time this searches bothname
andlabel
. This is used to avoid paginating through all applications.- label
Prefix String Label prefix of the app to retrieve, conflicts with
label
andid
. This will tell the provider to do astarts with
query as opposed to anequals
query.- request
Compressed Boolean Denotes whether the request is compressed or not.
- skip
Groups Boolean Indicator that allows the app to skip
groups
sync. Default isfalse
.- skip
Users Boolean Indicator that allows the app to skip
users
sync. Default isfalse
.
getSaml Result
The following output properties are available:
- Accessibility
Error stringRedirect Url Custom error page URL.
- Accessibility
Login stringRedirect Url Custom login page URL.
- Accessibility
Self boolService Enable self-service.
- Acs
Endpoints List<string> An array of ACS endpoints. You can configure a maximum of 100 endpoints.
- App
Settings stringJson Application settings in JSON format.
- Assertion
Signed bool Determines whether the SAML assertion is digitally signed.
- Attribute
Statements List<GetSaml Attribute Statement> List of SAML Attribute statements.
- Audience string
Audience restriction.
- Authn
Context stringClass Ref Identifies the SAML authentication context class for the assertion’s authentication statement.
- Auto
Submit boolToolbar Display auto submit toolbar.
- Default
Relay stringState 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.
- Digest
Algorithm 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.
The
groups
field is now deprecated for the data sourceokta_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 boolAuthn Prompt user to re-authenticate if SP asks for it.
- Idp
Issuer string SAML issuer ID.
- Inline
Hook stringId Saml Inline Hook associated with the application.
- Key
Id 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.
- Response
Signed bool Determines whether the SAML auth response message is digitally signed.
- Saml
Signed boolRequest Enabled SAML Signed Request enabled
- Signature
Algorithm string Signature algorithm used ot digitally sign the assertion and response.
- Single
Logout stringCertificate x509 encoded certificate that the Service Provider uses to sign Single Logout requests.
- Single
Logout stringIssuer The issuer of the Service Provider that generates the Single Logout request.
- Single
Logout stringUrl The location where the logout response is sent.
- Sp
Issuer string SAML service provider issuer.
- Sso
Url string Single Sign-on Url.
- Status string
status of application.
- Subject
Name stringId Format Identifies the SAML processing rules.
- Subject
Name stringId Template Template for app user's username when a user is assigned to the app.
- User
Name stringTemplate Username template.
- User
Name stringTemplate Push Status Push username on update.
- User
Name stringTemplate Suffix Username template suffix.
- User
Name stringTemplate Type Username template type.
- Users List<string>
List of users IDs assigned to the application.
The
users
field is now deprecated for the data sourceokta_app_saml
, please replace all uses of this with:okta_app_user_assignments
- Active
Only bool - Id string
id of application.
- Label string
label of application.
- Label
Prefix string - Request
Compressed bool Denotes whether the request is compressed or not.
- Skip
Groups bool - Skip
Users bool
- Accessibility
Error stringRedirect Url Custom error page URL.
- Accessibility
Login stringRedirect Url Custom login page URL.
- Accessibility
Self boolService Enable self-service.
- Acs
Endpoints []string An array of ACS endpoints. You can configure a maximum of 100 endpoints.
- App
Settings stringJson Application settings in JSON format.
- Assertion
Signed bool Determines whether the SAML assertion is digitally signed.
- Attribute
Statements []GetSaml Attribute Statement List of SAML Attribute statements.
- Audience string
Audience restriction.
- Authn
Context stringClass Ref Identifies the SAML authentication context class for the assertion’s authentication statement.
- Auto
Submit boolToolbar Display auto submit toolbar.
- Default
Relay stringState 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.
- Digest
Algorithm 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.
The
groups
field is now deprecated for the data sourceokta_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 boolAuthn Prompt user to re-authenticate if SP asks for it.
- Idp
Issuer string SAML issuer ID.
- Inline
Hook stringId Saml Inline Hook associated with the application.
- Key
Id 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.
- Response
Signed bool Determines whether the SAML auth response message is digitally signed.
- Saml
Signed boolRequest Enabled SAML Signed Request enabled
- Signature
Algorithm string Signature algorithm used ot digitally sign the assertion and response.
- Single
Logout stringCertificate x509 encoded certificate that the Service Provider uses to sign Single Logout requests.
- Single
Logout stringIssuer The issuer of the Service Provider that generates the Single Logout request.
- Single
Logout stringUrl The location where the logout response is sent.
- Sp
Issuer string SAML service provider issuer.
- Sso
Url string Single Sign-on Url.
- Status string
status of application.
- Subject
Name stringId Format Identifies the SAML processing rules.
- Subject
Name stringId Template Template for app user's username when a user is assigned to the app.
- User
Name stringTemplate Username template.
- User
Name stringTemplate Push Status Push username on update.
- User
Name stringTemplate Suffix Username template suffix.
- User
Name stringTemplate Type Username template type.
- Users []string
List of users IDs assigned to the application.
The
users
field is now deprecated for the data sourceokta_app_saml
, please replace all uses of this with:okta_app_user_assignments
- Active
Only bool - Id string
id of application.
- Label string
label of application.
- Label
Prefix string - Request
Compressed bool Denotes whether the request is compressed or not.
- Skip
Groups bool - Skip
Users bool
- accessibility
Error StringRedirect Url Custom error page URL.
- accessibility
Login StringRedirect Url Custom login page URL.
- accessibility
Self BooleanService Enable self-service.
- acs
Endpoints List<String> An array of ACS endpoints. You can configure a maximum of 100 endpoints.
- app
Settings StringJson Application settings in JSON format.
- assertion
Signed Boolean Determines whether the SAML assertion is digitally signed.
- attribute
Statements List<GetSaml Attribute Statement> List of SAML Attribute statements.
- audience String
Audience restriction.
- authn
Context StringClass Ref Identifies the SAML authentication context class for the assertion’s authentication statement.
- auto
Submit BooleanToolbar Display auto submit toolbar.
- default
Relay StringState 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.
- digest
Algorithm 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.
The
groups
field is now deprecated for the data sourceokta_app_saml
, please replace all uses of this with:okta_app_group_assignments
- hide
Ios Boolean Do not display application icon on mobile app.
- hide
Web Boolean Do not display application icon to users
- honor
Force BooleanAuthn Prompt user to re-authenticate if SP asks for it.
- idp
Issuer String SAML issuer ID.
- inline
Hook StringId Saml Inline Hook associated with the application.
- key
Id 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.
- response
Signed Boolean Determines whether the SAML auth response message is digitally signed.
- saml
Signed BooleanRequest Enabled SAML Signed Request enabled
- signature
Algorithm String Signature algorithm used ot digitally sign the assertion and response.
- single
Logout StringCertificate x509 encoded certificate that the Service Provider uses to sign Single Logout requests.
- single
Logout StringIssuer The issuer of the Service Provider that generates the Single Logout request.
- single
Logout StringUrl The location where the logout response is sent.
- sp
Issuer String SAML service provider issuer.
- sso
Url String Single Sign-on Url.
- status String
status of application.
- subject
Name StringId Format Identifies the SAML processing rules.
- subject
Name StringId Template Template for app user's username when a user is assigned to the app.
- user
Name StringTemplate Username template.
- user
Name StringTemplate Push Status Push username on update.
- user
Name StringTemplate Suffix Username template suffix.
- user
Name StringTemplate Type Username template type.
- users List<String>
List of users IDs assigned to the application.
The
users
field is now deprecated for the data sourceokta_app_saml
, please replace all uses of this with:okta_app_user_assignments
- active
Only Boolean - id String
id of application.
- label String
label of application.
- label
Prefix String - request
Compressed Boolean Denotes whether the request is compressed or not.
- skip
Groups Boolean - skip
Users Boolean
- accessibility
Error stringRedirect Url Custom error page URL.
- accessibility
Login stringRedirect Url Custom login page URL.
- accessibility
Self booleanService Enable self-service.
- acs
Endpoints string[] An array of ACS endpoints. You can configure a maximum of 100 endpoints.
- app
Settings stringJson Application settings in JSON format.
- assertion
Signed boolean Determines whether the SAML assertion is digitally signed.
- attribute
Statements GetSaml Attribute Statement[] List of SAML Attribute statements.
- audience string
Audience restriction.
- authn
Context stringClass Ref Identifies the SAML authentication context class for the assertion’s authentication statement.
- auto
Submit booleanToolbar Display auto submit toolbar.
- default
Relay stringState 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.
- digest
Algorithm 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.
The
groups
field is now deprecated for the data sourceokta_app_saml
, please replace all uses of this with:okta_app_group_assignments
- hide
Ios boolean Do not display application icon on mobile app.
- hide
Web boolean Do not display application icon to users
- honor
Force booleanAuthn Prompt user to re-authenticate if SP asks for it.
- idp
Issuer string SAML issuer ID.
- inline
Hook stringId Saml Inline Hook associated with the application.
- key
Id 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.
- response
Signed boolean Determines whether the SAML auth response message is digitally signed.
- saml
Signed booleanRequest Enabled SAML Signed Request enabled
- signature
Algorithm string Signature algorithm used ot digitally sign the assertion and response.
- single
Logout stringCertificate x509 encoded certificate that the Service Provider uses to sign Single Logout requests.
- single
Logout stringIssuer The issuer of the Service Provider that generates the Single Logout request.
- single
Logout stringUrl The location where the logout response is sent.
- sp
Issuer string SAML service provider issuer.
- sso
Url string Single Sign-on Url.
- status string
status of application.
- subject
Name stringId Format Identifies the SAML processing rules.
- subject
Name stringId Template Template for app user's username when a user is assigned to the app.
- user
Name stringTemplate Username template.
- user
Name stringTemplate Push Status Push username on update.
- user
Name stringTemplate Suffix Username template suffix.
- user
Name stringTemplate Type Username template type.
- users string[]
List of users IDs assigned to the application.
The
users
field is now deprecated for the data sourceokta_app_saml
, please replace all uses of this with:okta_app_user_assignments
- active
Only boolean - id string
id of application.
- label string
label of application.
- label
Prefix string - request
Compressed boolean Denotes whether the request is compressed or not.
- skip
Groups boolean - skip
Users boolean
- accessibility_
error_ strredirect_ url Custom error page URL.
- accessibility_
login_ strredirect_ url Custom login page URL.
- accessibility_
self_ boolservice Enable self-service.
- acs_
endpoints Sequence[str] An array of ACS endpoints. You can configure a maximum of 100 endpoints.
- app_
settings_ strjson Application settings in JSON format.
- assertion_
signed bool Determines whether the SAML assertion is digitally signed.
- attribute_
statements Sequence[GetSaml Attribute Statement] List of SAML Attribute statements.
- audience str
Audience restriction.
- authn_
context_ strclass_ ref Identifies the SAML authentication context class for the assertion’s authentication statement.
- auto_
submit_ booltoolbar Display auto submit toolbar.
- default_
relay_ strstate 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.
The
groups
field is now deprecated for the data sourceokta_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_ boolauthn Prompt user to re-authenticate if SP asks for it.
- idp_
issuer str SAML issuer ID.
- inline_
hook_ strid 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_ boolrequest_ enabled SAML Signed Request enabled
- signature_
algorithm str Signature algorithm used ot digitally sign the assertion and response.
- single_
logout_ strcertificate x509 encoded certificate that the Service Provider uses to sign Single Logout requests.
- single_
logout_ strissuer The issuer of the Service Provider that generates the Single Logout request.
- single_
logout_ strurl 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_ strid_ format Identifies the SAML processing rules.
- subject_
name_ strid_ template Template for app user's username when a user is assigned to the app.
- user_
name_ strtemplate Username template.
- user_
name_ strtemplate_ push_ status Push username on update.
- user_
name_ strtemplate_ suffix Username template suffix.
- user_
name_ strtemplate_ type Username template type.
- users Sequence[str]
List of users IDs assigned to the application.
The
users
field is now deprecated for the data sourceokta_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
- accessibility
Error StringRedirect Url Custom error page URL.
- accessibility
Login StringRedirect Url Custom login page URL.
- accessibility
Self BooleanService Enable self-service.
- acs
Endpoints List<String> An array of ACS endpoints. You can configure a maximum of 100 endpoints.
- app
Settings StringJson Application settings in JSON format.
- assertion
Signed Boolean Determines whether the SAML assertion is digitally signed.
- attribute
Statements List<Property Map> List of SAML Attribute statements.
- audience String
Audience restriction.
- authn
Context StringClass Ref Identifies the SAML authentication context class for the assertion’s authentication statement.
- auto
Submit BooleanToolbar Display auto submit toolbar.
- default
Relay StringState 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.
- digest
Algorithm 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.
The
groups
field is now deprecated for the data sourceokta_app_saml
, please replace all uses of this with:okta_app_group_assignments
- hide
Ios Boolean Do not display application icon on mobile app.
- hide
Web Boolean Do not display application icon to users
- honor
Force BooleanAuthn Prompt user to re-authenticate if SP asks for it.
- idp
Issuer String SAML issuer ID.
- inline
Hook StringId Saml Inline Hook associated with the application.
- key
Id 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.
- response
Signed Boolean Determines whether the SAML auth response message is digitally signed.
- saml
Signed BooleanRequest Enabled SAML Signed Request enabled
- signature
Algorithm String Signature algorithm used ot digitally sign the assertion and response.
- single
Logout StringCertificate x509 encoded certificate that the Service Provider uses to sign Single Logout requests.
- single
Logout StringIssuer The issuer of the Service Provider that generates the Single Logout request.
- single
Logout StringUrl The location where the logout response is sent.
- sp
Issuer String SAML service provider issuer.
- sso
Url String Single Sign-on Url.
- status String
status of application.
- subject
Name StringId Format Identifies the SAML processing rules.
- subject
Name StringId Template Template for app user's username when a user is assigned to the app.
- user
Name StringTemplate Username template.
- user
Name StringTemplate Push Status Push username on update.
- user
Name StringTemplate Suffix Username template suffix.
- user
Name StringTemplate Type Username template type.
- users List<String>
List of users IDs assigned to the application.
The
users
field is now deprecated for the data sourceokta_app_saml
, please replace all uses of this with:okta_app_user_assignments
- active
Only Boolean - id String
id of application.
- label String
label of application.
- label
Prefix String - request
Compressed Boolean Denotes whether the request is compressed or not.
- skip
Groups Boolean - skip
Users Boolean
Supporting Types
GetSamlAttributeStatement
- Filter
Type string Type of group attribute filter.
- Filter
Value 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.
- Filter
Type string Type of group attribute filter.
- Filter
Value 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 String Type of group attribute filter.
- filter
Value 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.
- filter
Type string Type of group attribute filter.
- filter
Value 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.
- filter
Type String Type of group attribute filter.
- filter
Value 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.