1. Packages
  2. FusionAuth
  3. API Docs
  4. FusionAuthRegistration
FusionAuth v6.0.2 published on Sunday, Feb 9, 2025 by Theo Gravity

fusionauth.FusionAuthRegistration

Explore with Pulumi AI

# Registration Resource

A registration is the association between a User and an Application that they log into.

Registrations API

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fusionauth from "pulumi-fusionauth";

const example = new fusionauth.FusionAuthRegistration("example", {
    userId: fusionauth_user.example.id,
    applicationId: data.fusionauth_application.FusionAuth.id,
    roles: ["admin"],
    username: "theadmin",
});
Copy
import pulumi
import theogravity_pulumi_fusionauth as fusionauth

example = fusionauth.FusionAuthRegistration("example",
    user_id=fusionauth_user["example"]["id"],
    application_id=data["fusionauth_application"]["FusionAuth"]["id"],
    roles=["admin"],
    username="theadmin")
Copy
package main

import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/theogravity/pulumi-fusionauth/sdk/go/fusionauth"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := fusionauth.NewFusionAuthRegistration(ctx, "example", &fusionauth.FusionAuthRegistrationArgs{
			UserId:        pulumi.Any(fusionauth_user.Example.Id),
			ApplicationId: pulumi.Any(data.Fusionauth_application.FusionAuth.Id),
			Roles: pulumi.StringArray{
				pulumi.String("admin"),
			},
			Username: pulumi.String("theadmin"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fusionauth = theogravity.Fusionauth;

return await Deployment.RunAsync(() => 
{
    var example = new Fusionauth.FusionAuthRegistration("example", new()
    {
        UserId = fusionauth_user.Example.Id,
        ApplicationId = data.Fusionauth_application.FusionAuth.Id,
        Roles = new[]
        {
            "admin",
        },
        Username = "theadmin",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fusionauth.FusionAuthRegistration;
import com.pulumi.fusionauth.FusionAuthRegistrationArgs;
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) {
        var example = new FusionAuthRegistration("example", FusionAuthRegistrationArgs.builder()
            .userId(fusionauth_user.example().id())
            .applicationId(data.fusionauth_application().FusionAuth().id())
            .roles("admin")
            .username("theadmin")
            .build());

    }
}
Copy
resources:
  example:
    type: fusionauth:FusionAuthRegistration
    properties:
      userId: ${fusionauth_user.example.id}
      applicationId: ${data.fusionauth_application.FusionAuth.id}
      roles:
        - admin
      username: theadmin
Copy

Create FusionAuthRegistration Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new FusionAuthRegistration(name: string, args: FusionAuthRegistrationArgs, opts?: CustomResourceOptions);
@overload
def FusionAuthRegistration(resource_name: str,
                           args: FusionAuthRegistrationArgs,
                           opts: Optional[ResourceOptions] = None)

@overload
def FusionAuthRegistration(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           application_id: Optional[str] = None,
                           user_id: Optional[str] = None,
                           authentication_token: Optional[str] = None,
                           data: Optional[Mapping[str, str]] = None,
                           generate_authentication_token: Optional[bool] = None,
                           preferred_languages: Optional[Sequence[str]] = None,
                           registration_id: Optional[str] = None,
                           roles: Optional[Sequence[str]] = None,
                           skip_registration_validation: Optional[bool] = None,
                           timezone: Optional[str] = None,
                           username: Optional[str] = None)
func NewFusionAuthRegistration(ctx *Context, name string, args FusionAuthRegistrationArgs, opts ...ResourceOption) (*FusionAuthRegistration, error)
public FusionAuthRegistration(string name, FusionAuthRegistrationArgs args, CustomResourceOptions? opts = null)
public FusionAuthRegistration(String name, FusionAuthRegistrationArgs args)
public FusionAuthRegistration(String name, FusionAuthRegistrationArgs args, CustomResourceOptions options)
type: fusionauth:FusionAuthRegistration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. FusionAuthRegistrationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. FusionAuthRegistrationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. FusionAuthRegistrationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. FusionAuthRegistrationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. FusionAuthRegistrationArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var fusionAuthRegistrationResource = new Fusionauth.FusionAuthRegistration("fusionAuthRegistrationResource", new()
{
    ApplicationId = "string",
    UserId = "string",
    AuthenticationToken = "string",
    Data = 
    {
        { "string", "string" },
    },
    GenerateAuthenticationToken = false,
    PreferredLanguages = new[]
    {
        "string",
    },
    RegistrationId = "string",
    Roles = new[]
    {
        "string",
    },
    SkipRegistrationValidation = false,
    Timezone = "string",
    Username = "string",
});
Copy
example, err := fusionauth.NewFusionAuthRegistration(ctx, "fusionAuthRegistrationResource", &fusionauth.FusionAuthRegistrationArgs{
	ApplicationId:       pulumi.String("string"),
	UserId:              pulumi.String("string"),
	AuthenticationToken: pulumi.String("string"),
	Data: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	GenerateAuthenticationToken: pulumi.Bool(false),
	PreferredLanguages: pulumi.StringArray{
		pulumi.String("string"),
	},
	RegistrationId: pulumi.String("string"),
	Roles: pulumi.StringArray{
		pulumi.String("string"),
	},
	SkipRegistrationValidation: pulumi.Bool(false),
	Timezone:                   pulumi.String("string"),
	Username:                   pulumi.String("string"),
})
Copy
var fusionAuthRegistrationResource = new FusionAuthRegistration("fusionAuthRegistrationResource", FusionAuthRegistrationArgs.builder()
    .applicationId("string")
    .userId("string")
    .authenticationToken("string")
    .data(Map.of("string", "string"))
    .generateAuthenticationToken(false)
    .preferredLanguages("string")
    .registrationId("string")
    .roles("string")
    .skipRegistrationValidation(false)
    .timezone("string")
    .username("string")
    .build());
Copy
fusion_auth_registration_resource = fusionauth.FusionAuthRegistration("fusionAuthRegistrationResource",
    application_id="string",
    user_id="string",
    authentication_token="string",
    data={
        "string": "string",
    },
    generate_authentication_token=False,
    preferred_languages=["string"],
    registration_id="string",
    roles=["string"],
    skip_registration_validation=False,
    timezone="string",
    username="string")
Copy
const fusionAuthRegistrationResource = new fusionauth.FusionAuthRegistration("fusionAuthRegistrationResource", {
    applicationId: "string",
    userId: "string",
    authenticationToken: "string",
    data: {
        string: "string",
    },
    generateAuthenticationToken: false,
    preferredLanguages: ["string"],
    registrationId: "string",
    roles: ["string"],
    skipRegistrationValidation: false,
    timezone: "string",
    username: "string",
});
Copy
type: fusionauth:FusionAuthRegistration
properties:
    applicationId: string
    authenticationToken: string
    data:
        string: string
    generateAuthenticationToken: false
    preferredLanguages:
        - string
    registrationId: string
    roles:
        - string
    skipRegistrationValidation: false
    timezone: string
    userId: string
    username: string
Copy

FusionAuthRegistration Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The FusionAuthRegistration resource accepts the following input properties:

ApplicationId
This property is required.
Changes to this property will trigger replacement.
string
The Id of the Application that this registration is for.
UserId
This property is required.
Changes to this property will trigger replacement.
string
The Id of the User that is registering for the Application.
AuthenticationToken string
The authentication token that may be used in place of the User’s password when authenticating against this application represented by this registration. This parameter is ignored if generateAuthenticationToken is set to true and instead the value will be generated.
Data Dictionary<string, string>
An object that can hold any information about the User for this registration that should be persisted.
GenerateAuthenticationToken bool
Determines if FusionAuth should generate an Authentication Token for this registration.
PreferredLanguages List<string>
An array of locale strings that give, in order, the User’s preferred languages for this registration. These are important for email templates and other localizable text.
RegistrationId Changes to this property will trigger replacement. string
The Id of this registration. If not specified a secure random UUID will be generated.
Roles List<string>
The list of roles that the User has for this registration.
SkipRegistrationValidation bool
Indicates to FusionAuth that it should skip registration verification even if it is enabled for the Application.
Timezone string
The User’s preferred timezone for this registration. The string will be in an IANA time zone format.
Username string
The username of the User for this registration only.
ApplicationId
This property is required.
Changes to this property will trigger replacement.
string
The Id of the Application that this registration is for.
UserId
This property is required.
Changes to this property will trigger replacement.
string
The Id of the User that is registering for the Application.
AuthenticationToken string
The authentication token that may be used in place of the User’s password when authenticating against this application represented by this registration. This parameter is ignored if generateAuthenticationToken is set to true and instead the value will be generated.
Data map[string]string
An object that can hold any information about the User for this registration that should be persisted.
GenerateAuthenticationToken bool
Determines if FusionAuth should generate an Authentication Token for this registration.
PreferredLanguages []string
An array of locale strings that give, in order, the User’s preferred languages for this registration. These are important for email templates and other localizable text.
RegistrationId Changes to this property will trigger replacement. string
The Id of this registration. If not specified a secure random UUID will be generated.
Roles []string
The list of roles that the User has for this registration.
SkipRegistrationValidation bool
Indicates to FusionAuth that it should skip registration verification even if it is enabled for the Application.
Timezone string
The User’s preferred timezone for this registration. The string will be in an IANA time zone format.
Username string
The username of the User for this registration only.
applicationId
This property is required.
Changes to this property will trigger replacement.
String
The Id of the Application that this registration is for.
userId
This property is required.
Changes to this property will trigger replacement.
String
The Id of the User that is registering for the Application.
authenticationToken String
The authentication token that may be used in place of the User’s password when authenticating against this application represented by this registration. This parameter is ignored if generateAuthenticationToken is set to true and instead the value will be generated.
data Map<String,String>
An object that can hold any information about the User for this registration that should be persisted.
generateAuthenticationToken Boolean
Determines if FusionAuth should generate an Authentication Token for this registration.
preferredLanguages List<String>
An array of locale strings that give, in order, the User’s preferred languages for this registration. These are important for email templates and other localizable text.
registrationId Changes to this property will trigger replacement. String
The Id of this registration. If not specified a secure random UUID will be generated.
roles List<String>
The list of roles that the User has for this registration.
skipRegistrationValidation Boolean
Indicates to FusionAuth that it should skip registration verification even if it is enabled for the Application.
timezone String
The User’s preferred timezone for this registration. The string will be in an IANA time zone format.
username String
The username of the User for this registration only.
applicationId
This property is required.
Changes to this property will trigger replacement.
string
The Id of the Application that this registration is for.
userId
This property is required.
Changes to this property will trigger replacement.
string
The Id of the User that is registering for the Application.
authenticationToken string
The authentication token that may be used in place of the User’s password when authenticating against this application represented by this registration. This parameter is ignored if generateAuthenticationToken is set to true and instead the value will be generated.
data {[key: string]: string}
An object that can hold any information about the User for this registration that should be persisted.
generateAuthenticationToken boolean
Determines if FusionAuth should generate an Authentication Token for this registration.
preferredLanguages string[]
An array of locale strings that give, in order, the User’s preferred languages for this registration. These are important for email templates and other localizable text.
registrationId Changes to this property will trigger replacement. string
The Id of this registration. If not specified a secure random UUID will be generated.
roles string[]
The list of roles that the User has for this registration.
skipRegistrationValidation boolean
Indicates to FusionAuth that it should skip registration verification even if it is enabled for the Application.
timezone string
The User’s preferred timezone for this registration. The string will be in an IANA time zone format.
username string
The username of the User for this registration only.
application_id
This property is required.
Changes to this property will trigger replacement.
str
The Id of the Application that this registration is for.
user_id
This property is required.
Changes to this property will trigger replacement.
str
The Id of the User that is registering for the Application.
authentication_token str
The authentication token that may be used in place of the User’s password when authenticating against this application represented by this registration. This parameter is ignored if generateAuthenticationToken is set to true and instead the value will be generated.
data Mapping[str, str]
An object that can hold any information about the User for this registration that should be persisted.
generate_authentication_token bool
Determines if FusionAuth should generate an Authentication Token for this registration.
preferred_languages Sequence[str]
An array of locale strings that give, in order, the User’s preferred languages for this registration. These are important for email templates and other localizable text.
registration_id Changes to this property will trigger replacement. str
The Id of this registration. If not specified a secure random UUID will be generated.
roles Sequence[str]
The list of roles that the User has for this registration.
skip_registration_validation bool
Indicates to FusionAuth that it should skip registration verification even if it is enabled for the Application.
timezone str
The User’s preferred timezone for this registration. The string will be in an IANA time zone format.
username str
The username of the User for this registration only.
applicationId
This property is required.
Changes to this property will trigger replacement.
String
The Id of the Application that this registration is for.
userId
This property is required.
Changes to this property will trigger replacement.
String
The Id of the User that is registering for the Application.
authenticationToken String
The authentication token that may be used in place of the User’s password when authenticating against this application represented by this registration. This parameter is ignored if generateAuthenticationToken is set to true and instead the value will be generated.
data Map<String>
An object that can hold any information about the User for this registration that should be persisted.
generateAuthenticationToken Boolean
Determines if FusionAuth should generate an Authentication Token for this registration.
preferredLanguages List<String>
An array of locale strings that give, in order, the User’s preferred languages for this registration. These are important for email templates and other localizable text.
registrationId Changes to this property will trigger replacement. String
The Id of this registration. If not specified a secure random UUID will be generated.
roles List<String>
The list of roles that the User has for this registration.
skipRegistrationValidation Boolean
Indicates to FusionAuth that it should skip registration verification even if it is enabled for the Application.
timezone String
The User’s preferred timezone for this registration. The string will be in an IANA time zone format.
username String
The username of the User for this registration only.

Outputs

All input properties are implicitly available as output properties. Additionally, the FusionAuthRegistration resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing FusionAuthRegistration Resource

Get an existing FusionAuthRegistration resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: FusionAuthRegistrationState, opts?: CustomResourceOptions): FusionAuthRegistration
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        application_id: Optional[str] = None,
        authentication_token: Optional[str] = None,
        data: Optional[Mapping[str, str]] = None,
        generate_authentication_token: Optional[bool] = None,
        preferred_languages: Optional[Sequence[str]] = None,
        registration_id: Optional[str] = None,
        roles: Optional[Sequence[str]] = None,
        skip_registration_validation: Optional[bool] = None,
        timezone: Optional[str] = None,
        user_id: Optional[str] = None,
        username: Optional[str] = None) -> FusionAuthRegistration
func GetFusionAuthRegistration(ctx *Context, name string, id IDInput, state *FusionAuthRegistrationState, opts ...ResourceOption) (*FusionAuthRegistration, error)
public static FusionAuthRegistration Get(string name, Input<string> id, FusionAuthRegistrationState? state, CustomResourceOptions? opts = null)
public static FusionAuthRegistration get(String name, Output<String> id, FusionAuthRegistrationState state, CustomResourceOptions options)
resources:  _:    type: fusionauth:FusionAuthRegistration    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ApplicationId Changes to this property will trigger replacement. string
The Id of the Application that this registration is for.
AuthenticationToken string
The authentication token that may be used in place of the User’s password when authenticating against this application represented by this registration. This parameter is ignored if generateAuthenticationToken is set to true and instead the value will be generated.
Data Dictionary<string, string>
An object that can hold any information about the User for this registration that should be persisted.
GenerateAuthenticationToken bool
Determines if FusionAuth should generate an Authentication Token for this registration.
PreferredLanguages List<string>
An array of locale strings that give, in order, the User’s preferred languages for this registration. These are important for email templates and other localizable text.
RegistrationId Changes to this property will trigger replacement. string
The Id of this registration. If not specified a secure random UUID will be generated.
Roles List<string>
The list of roles that the User has for this registration.
SkipRegistrationValidation bool
Indicates to FusionAuth that it should skip registration verification even if it is enabled for the Application.
Timezone string
The User’s preferred timezone for this registration. The string will be in an IANA time zone format.
UserId Changes to this property will trigger replacement. string
The Id of the User that is registering for the Application.
Username string
The username of the User for this registration only.
ApplicationId Changes to this property will trigger replacement. string
The Id of the Application that this registration is for.
AuthenticationToken string
The authentication token that may be used in place of the User’s password when authenticating against this application represented by this registration. This parameter is ignored if generateAuthenticationToken is set to true and instead the value will be generated.
Data map[string]string
An object that can hold any information about the User for this registration that should be persisted.
GenerateAuthenticationToken bool
Determines if FusionAuth should generate an Authentication Token for this registration.
PreferredLanguages []string
An array of locale strings that give, in order, the User’s preferred languages for this registration. These are important for email templates and other localizable text.
RegistrationId Changes to this property will trigger replacement. string
The Id of this registration. If not specified a secure random UUID will be generated.
Roles []string
The list of roles that the User has for this registration.
SkipRegistrationValidation bool
Indicates to FusionAuth that it should skip registration verification even if it is enabled for the Application.
Timezone string
The User’s preferred timezone for this registration. The string will be in an IANA time zone format.
UserId Changes to this property will trigger replacement. string
The Id of the User that is registering for the Application.
Username string
The username of the User for this registration only.
applicationId Changes to this property will trigger replacement. String
The Id of the Application that this registration is for.
authenticationToken String
The authentication token that may be used in place of the User’s password when authenticating against this application represented by this registration. This parameter is ignored if generateAuthenticationToken is set to true and instead the value will be generated.
data Map<String,String>
An object that can hold any information about the User for this registration that should be persisted.
generateAuthenticationToken Boolean
Determines if FusionAuth should generate an Authentication Token for this registration.
preferredLanguages List<String>
An array of locale strings that give, in order, the User’s preferred languages for this registration. These are important for email templates and other localizable text.
registrationId Changes to this property will trigger replacement. String
The Id of this registration. If not specified a secure random UUID will be generated.
roles List<String>
The list of roles that the User has for this registration.
skipRegistrationValidation Boolean
Indicates to FusionAuth that it should skip registration verification even if it is enabled for the Application.
timezone String
The User’s preferred timezone for this registration. The string will be in an IANA time zone format.
userId Changes to this property will trigger replacement. String
The Id of the User that is registering for the Application.
username String
The username of the User for this registration only.
applicationId Changes to this property will trigger replacement. string
The Id of the Application that this registration is for.
authenticationToken string
The authentication token that may be used in place of the User’s password when authenticating against this application represented by this registration. This parameter is ignored if generateAuthenticationToken is set to true and instead the value will be generated.
data {[key: string]: string}
An object that can hold any information about the User for this registration that should be persisted.
generateAuthenticationToken boolean
Determines if FusionAuth should generate an Authentication Token for this registration.
preferredLanguages string[]
An array of locale strings that give, in order, the User’s preferred languages for this registration. These are important for email templates and other localizable text.
registrationId Changes to this property will trigger replacement. string
The Id of this registration. If not specified a secure random UUID will be generated.
roles string[]
The list of roles that the User has for this registration.
skipRegistrationValidation boolean
Indicates to FusionAuth that it should skip registration verification even if it is enabled for the Application.
timezone string
The User’s preferred timezone for this registration. The string will be in an IANA time zone format.
userId Changes to this property will trigger replacement. string
The Id of the User that is registering for the Application.
username string
The username of the User for this registration only.
application_id Changes to this property will trigger replacement. str
The Id of the Application that this registration is for.
authentication_token str
The authentication token that may be used in place of the User’s password when authenticating against this application represented by this registration. This parameter is ignored if generateAuthenticationToken is set to true and instead the value will be generated.
data Mapping[str, str]
An object that can hold any information about the User for this registration that should be persisted.
generate_authentication_token bool
Determines if FusionAuth should generate an Authentication Token for this registration.
preferred_languages Sequence[str]
An array of locale strings that give, in order, the User’s preferred languages for this registration. These are important for email templates and other localizable text.
registration_id Changes to this property will trigger replacement. str
The Id of this registration. If not specified a secure random UUID will be generated.
roles Sequence[str]
The list of roles that the User has for this registration.
skip_registration_validation bool
Indicates to FusionAuth that it should skip registration verification even if it is enabled for the Application.
timezone str
The User’s preferred timezone for this registration. The string will be in an IANA time zone format.
user_id Changes to this property will trigger replacement. str
The Id of the User that is registering for the Application.
username str
The username of the User for this registration only.
applicationId Changes to this property will trigger replacement. String
The Id of the Application that this registration is for.
authenticationToken String
The authentication token that may be used in place of the User’s password when authenticating against this application represented by this registration. This parameter is ignored if generateAuthenticationToken is set to true and instead the value will be generated.
data Map<String>
An object that can hold any information about the User for this registration that should be persisted.
generateAuthenticationToken Boolean
Determines if FusionAuth should generate an Authentication Token for this registration.
preferredLanguages List<String>
An array of locale strings that give, in order, the User’s preferred languages for this registration. These are important for email templates and other localizable text.
registrationId Changes to this property will trigger replacement. String
The Id of this registration. If not specified a secure random UUID will be generated.
roles List<String>
The list of roles that the User has for this registration.
skipRegistrationValidation Boolean
Indicates to FusionAuth that it should skip registration verification even if it is enabled for the Application.
timezone String
The User’s preferred timezone for this registration. The string will be in an IANA time zone format.
userId Changes to this property will trigger replacement. String
The Id of the User that is registering for the Application.
username String
The username of the User for this registration only.

Package Details

Repository
fusionauth theogravity/pulumi-fusionauth
License
MIT
Notes
This Pulumi package is based on the fusionauth Terraform Provider.