Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


REST API Seeds configuration guidelines can be found here.

Azure Identity Connector Seeds "type" must always be specified as "azure-identity".

Azure Identity Connector Seeds "seed" can be any string.

Properties specific to the Azure Identity Connector Seeds are described below.


Easy Heading Free
navigationTitleOn this Page
navigationExpandOptionexpand-all-by-default

Azure Identity

Credentials

Seed Properties


FieldRequiredDefaultMultipleNotesExample
propertiesNo-NoConfiguration object
lowerCaseNofalseNoIf set to true, all extracted identities are stored in lowercase.true / false
addEveryoneGroupNofalseNoIf set to true, adds an "Everyone" group for all user identities.true / false
addEveryoneExceptExternalGroupNofalseNoIf set to true, adds the "Everyone except external users" group for all user identities.true / false
userRegexNo-NoRegular expression to filter users to add if the "addEveryoneExceptExternalGroup" is set to true.".*companyAGroup.*"

Usage example


Code Block
themeRDark
titlePOST /aspire/_api/seeds
{
	"seed": "testSeed",
	"type": "azure-identity",
	"description": "AzureIdentitySeed",
	"connector": "b3aee828-06ff-4a05-b6a5-29c22f792555",
	"connection": "57218d6b-62ed-485e-9dac-8423d06dddfg",
	"workflows": [],
	"tags": [],
	"properties": {
		"lowerCase": true,
		"addEveryoneGroup": true,
		"addEveryoneExceptExternalGroup": true,
		"userRegex": ".*companyBGroup.*"
	}
}