GetMetadataSaml
Use this data source to retrieve the collaborators for a given repository.
Example Usage
using Pulumi;
using Okta = Pulumi.Okta;
class MyStack : Stack
{
public MyStack()
{
var example = Output.Create(Okta.App.GetMetadataSaml.InvokeAsync(new Okta.App.GetMetadataSamlArgs
{
AppId = "<app id>",
KeyId = "<cert key id>",
}));
}
}
Coming soon!
import pulumi
import pulumi_okta as okta
example = okta.app.get_metadata_saml(app_id="<app id>",
key_id="<cert key id>")import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";
const example = pulumi.output(okta.app.getMetadataSaml({
appId: "<app id>",
keyId: "<cert key id>",
}, { async: true }));Using GetMetadataSaml
function getMetadataSaml(args: GetMetadataSamlArgs, opts?: InvokeOptions): Promise<GetMetadataSamlResult>function get_metadata_saml(app_id=None, key_id=None, opts=None)func GetMetadataSaml(ctx *Context, args *GetMetadataSamlArgs, opts ...InvokeOption) (*GetMetadataSamlResult, error)public static class GetMetadataSaml {
public static Task<GetMetadataSamlResult> InvokeAsync(GetMetadataSamlArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
GetMetadataSaml Result
The following output properties are available:
- App
Id string - Certificate string
public certificate from application metadata.
- Entity
Id string Entity URL for instance
https://www.okta.com/saml2/service-provider/sposcfdmlybtwkdcgtuf.- Http
Post stringBinding urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Post location from the SAML metadata.
- Http
Redirect stringBinding urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect location from the SAML metadata.
- Id string
The provider-assigned unique ID for this managed resource.
- Key
Id string - Metadata string
raw metadata of application.
- Want
Authn boolRequests Signed Whether authn requests are signed.
- App
Id string - Certificate string
public certificate from application metadata.
- Entity
Id string Entity URL for instance
https://www.okta.com/saml2/service-provider/sposcfdmlybtwkdcgtuf.- Http
Post stringBinding urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Post location from the SAML metadata.
- Http
Redirect stringBinding urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect location from the SAML metadata.
- Id string
The provider-assigned unique ID for this managed resource.
- Key
Id string - Metadata string
raw metadata of application.
- Want
Authn boolRequests Signed Whether authn requests are signed.
- app
Id string - certificate string
public certificate from application metadata.
- entity
Id string Entity URL for instance
https://www.okta.com/saml2/service-provider/sposcfdmlybtwkdcgtuf.- http
Post stringBinding urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Post location from the SAML metadata.
- http
Redirect stringBinding urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect location from the SAML metadata.
- id string
The provider-assigned unique ID for this managed resource.
- key
Id string - metadata string
raw metadata of application.
- want
Authn booleanRequests Signed Whether authn requests are signed.
- app_
id str - certificate str
public certificate from application metadata.
- entity_
id str Entity URL for instance
https://www.okta.com/saml2/service-provider/sposcfdmlybtwkdcgtuf.- http_
post_ strbinding urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Post location from the SAML metadata.
- http_
redirect_ strbinding urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect location from the SAML metadata.
- id str
The provider-assigned unique ID for this managed resource.
- key_
id str - metadata str
raw metadata of application.
- want_
authn_ boolrequests_ signed Whether authn requests are signed.
Package Details
- Repository
- https://github.com/pulumi/pulumi-okta
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oktaTerraform Provider.