GetUserProfileMappingSource

Use this data source to retrieve the base user Profile Mapping source or target from Okta.

Example Usage

using Pulumi;
using Okta = Pulumi.Okta;

class MyStack : Stack
{
    public MyStack()
    {
        var example = Output.Create(Okta.User.GetUserProfileMappingSource.InvokeAsync());
    }

}

Coming soon!

import pulumi
import pulumi_okta as okta

example = okta.user.get_user_profile_mapping_source()
import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";

const example = pulumi.output(okta.user.getUserProfileMappingSource({ async: true }));

Using GetUserProfileMappingSource

function getUserProfileMappingSource(opts?: InvokeOptions): Promise<GetUserProfileMappingSourceResult>
function  get_user_profile_mapping_source(opts=None)
func GetUserProfileMappingSource(ctx *Context, opts ...InvokeOption) (*GetUserProfileMappingSourceResult, error)
public static class GetUserProfileMappingSource {
    public static Task<GetUserProfileMappingSourceResult> InvokeAsync(InvokeOptions? opts = null)
}

GetUserProfileMappingSource Result

The following output properties are available:

Id string

The provider-assigned unique ID for this managed resource.

Name string

name of source.

Type string

type of source.

Id string

The provider-assigned unique ID for this managed resource.

Name string

name of source.

Type string

type of source.

id string

The provider-assigned unique ID for this managed resource.

name string

name of source.

type string

type of source.

id str

The provider-assigned unique ID for this managed resource.

name str

name of source.

type str

type of source.

Package Details

Repository
https://github.com/pulumi/pulumi-okta
License
Apache-2.0
Notes
This Pulumi package is based on the okta Terraform Provider.