AdfsOrganization - X-Guardian/AdfsDsc GitHub Wiki
AdfsOrganization
Parameters
Parameter | Attribute | DataType | Description | Allowed Values |
---|---|---|---|---|
FederationServiceName | Key | String | Specifies the name of the Federation Service. | |
Name | Required | String | Specifies the name of the organization. | |
DisplayName | Required | String | Specifies the display name of the organization. | |
OrganizationUrl | Required | String | Specifies the URL of the organization. |
Description
The AdfsOrganization DSC resource manages the ADFS Organization information that is published in the federation metadata for the Federation Service.
Examples
Example 1
This configuration will set organization information that is published in the federation metadata for the Federation Service.
Configuration AdfsOrganization_Config
{
Import-DscResource -ModuleName AdfsDsc
Node localhost
{
AdfsOrganization Organization
{
FederationServiceName = 'sts.contoso.com'
DisplayName = 'Contoso Inc.'
Name = 'Contoso'
OrganizationUrl = 'https://www.contoso.com/'
}
}
}