You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The MSFT_AdcsOcspExtension is implemented using an anti-pattern and also will potentially cause a conflict with another proposed resource - MSFT_AdcsAIAExtension - if implemented the way proposed. This is because both write into the same settings.
These resources should be refactored into a new combined resource
MSFT_AdcsAuthorityInformationAccess with a MOF like:
[ClassVersion("1.0.0"), FriendlyName("AdcsAuthorityInformationAccess")]
class MSFT_AdcsAuthorityInformationAccess: OMI_BaseResource
{
[Key, Description("Specifies the resource is a single instance, the value must be 'Yes'."), ValueMap{"Yes"}, Values{"Yes"}] String IsSingleInstance;
[Write, Description("Specifies the list of URIs that should be included in the AIA extension of the issued certificate.")] String AiaUri[];
[Write, Description("Specifies the list of URIs that should be included in the Online Responder OCSP extension of the issued certificate")] String OCSPUri[];
[Write, Description("Specifies if the service should be restarted.")] Boolean RestartService;
};
The text was updated successfully, but these errors were encountered:
PlagueHO
changed the title
Deprecate MSFT_AdcsOcspExtension
Deprecate MSFT_AdcsOcspExtension and replace with MSFT_AdcsAuthorityInformationAccess
Sep 13, 2019
The MSFT_AdcsOcspExtension is implemented using an anti-pattern and also will potentially cause a conflict with another proposed resource - MSFT_AdcsAIAExtension - if implemented the way proposed. This is because both write into the same settings.
These resources should be refactored into a new combined resource
MSFT_AdcsAuthorityInformationAccess with a MOF like:
The text was updated successfully, but these errors were encountered: