-
Notifications
You must be signed in to change notification settings - Fork 5
AdfsApplicationGroup
X-Guardian edited this page Apr 6, 2023
·
3 revisions
Parameter | Attribute | DataType | Description | Allowed Values |
---|---|---|---|---|
Name | Key | String | Specifies a name for the application group. | |
Description | Write | String | Specifies a description for the application group. | |
Ensure | Write | String | Specifies whether the Application Group should be present or absent. Default value is 'Present'. |
Present , Absent
|
The AdfsApplicationGroup DSC resource manages Application Groups within Active Directory Federation Services. These are a construct that combine trust and authorization elements into one resource.
The AdfsNativeClientApplication
and AdfsWebApiApplication
resources manage applications within an
application group.
- Target machine must be running ADFS on Windows Server 2016 or above to use this resource.
This configuration will create an application group in Active Directory Federation Services (AD FS).
Configuration AdfsApplicationGroup_Config
{
Import-DscResource -ModuleName AdfsDsc
Node localhost
{
AdfsApplicationGroup AppGroup1
{
Name = 'AppGroup1'
Description = "This is the AppGroup1 Description"
}
}
}
- AdfsApplicationGroup
- AdfsApplicationPermission
- AdfsCertificate
- AdfsClaimDescription
- AdfsContactPerson
- AdfsFarm
- AdfsFarmNode
- AdfsGlobalAuthenticationPolicy
- AdfsGlobalWebContent
- AdfsNativeClientApplication
- AdfsOrganization
- AdfsProperties
- AdfsRelyingPartyTrust
- AdfsServerApplication
- AdfsSslCertificate
- AdfsWebApiApplication