GetSaml
Use this data source to retrieve a SAML IdP from Okta.
Example Usage
using Pulumi;
using Okta = Pulumi.Okta;
class MyStack : Stack
{
public MyStack()
{
var example = Output.Create(Okta.Idp.GetSaml.InvokeAsync(new Okta.Idp.GetSamlArgs
{
Label = "Example App",
}));
}
}
Coming soon!
import pulumi
import pulumi_okta as okta
example = okta.idp.get_saml(label="Example App")import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";
const example = pulumi.output(okta.idp.getSaml({
label: "Example App",
}, { async: true }));Using GetSaml
function getSaml(args: GetSamlArgs, opts?: InvokeOptions): Promise<GetSamlResult>function get_saml(id=None, name=None, opts=None)func LookupSaml(ctx *Context, args *LookupSamlArgs, opts ...InvokeOption) (*LookupSamlResult, error)Note: This function is named
LookupSamlin the Go SDK.
public static class GetSaml {
public static Task<GetSamlResult> InvokeAsync(GetSamlArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
GetSaml Result
The following output properties are available:
- Acs
Binding string HTTP binding used to receive a SAMLResponse message from the IdP.
- Acs
Type string Determines whether to publish an instance-specific (trust) or organization (shared) ACS endpoint in the SAML metadata.
- Audience string
URI that identifies the target Okta IdP instance (SP)
- Issuer string
URI that identifies the issuer (IdP).
- Issuer
Mode string indicates whether Okta uses the original Okta org domain URL, or a custom domain URL in the request to the IdP.
- Kid string
Key ID reference to the IdP’s X.509 signature certificate.
- Sso
Binding string single sign on binding.
- Sso
Destination string SSO request binding, HTTP-POST or HTTP-REDIRECT.
- Sso
Url string single sign on url.
- Subject
Filter string regular expression pattern used to filter untrusted IdP usernames.
- Subject
Formats List<string> Expression to generate or transform a unique username for the IdP user.
- Type string
type of idp.
- Id string
id of idp.
- Name string
name of the idp.
- Acs
Binding string HTTP binding used to receive a SAMLResponse message from the IdP.
- Acs
Type string Determines whether to publish an instance-specific (trust) or organization (shared) ACS endpoint in the SAML metadata.
- Audience string
URI that identifies the target Okta IdP instance (SP)
- Issuer string
URI that identifies the issuer (IdP).
- Issuer
Mode string indicates whether Okta uses the original Okta org domain URL, or a custom domain URL in the request to the IdP.
- Kid string
Key ID reference to the IdP’s X.509 signature certificate.
- Sso
Binding string single sign on binding.
- Sso
Destination string SSO request binding, HTTP-POST or HTTP-REDIRECT.
- Sso
Url string single sign on url.
- Subject
Filter string regular expression pattern used to filter untrusted IdP usernames.
- Subject
Formats []string Expression to generate or transform a unique username for the IdP user.
- Type string
type of idp.
- Id string
id of idp.
- Name string
name of the idp.
- acs
Binding string HTTP binding used to receive a SAMLResponse message from the IdP.
- acs
Type string Determines whether to publish an instance-specific (trust) or organization (shared) ACS endpoint in the SAML metadata.
- audience string
URI that identifies the target Okta IdP instance (SP)
- issuer string
URI that identifies the issuer (IdP).
- issuer
Mode string indicates whether Okta uses the original Okta org domain URL, or a custom domain URL in the request to the IdP.
- kid string
Key ID reference to the IdP’s X.509 signature certificate.
- sso
Binding string single sign on binding.
- sso
Destination string SSO request binding, HTTP-POST or HTTP-REDIRECT.
- sso
Url string single sign on url.
- subject
Filter string regular expression pattern used to filter untrusted IdP usernames.
- subject
Formats string[] Expression to generate or transform a unique username for the IdP user.
- type string
type of idp.
- id string
id of idp.
- name string
name of the idp.
- acs_
binding str HTTP binding used to receive a SAMLResponse message from the IdP.
- acs_
type str Determines whether to publish an instance-specific (trust) or organization (shared) ACS endpoint in the SAML metadata.
- audience str
URI that identifies the target Okta IdP instance (SP)
- issuer str
URI that identifies the issuer (IdP).
- issuer_
mode str indicates whether Okta uses the original Okta org domain URL, or a custom domain URL in the request to the IdP.
- kid str
Key ID reference to the IdP’s X.509 signature certificate.
- sso_
binding str single sign on binding.
- sso_
destination str SSO request binding, HTTP-POST or HTTP-REDIRECT.
- sso_
url str single sign on url.
- subject_
filter str regular expression pattern used to filter untrusted IdP usernames.
- subject_
formats List[str] Expression to generate or transform a unique username for the IdP user.
- type str
type of idp.
- id str
id of idp.
- name str
name of the idp.
Package Details
- Repository
- https://github.com/pulumi/pulumi-okta
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oktaTerraform Provider.