Skip to content

SPSecureStoreServiceApp

Brian Farnhill edited this page Jun 2, 2016 · 18 revisions

Parameters

Parameter Attribute DataType Description Allowed Values
Name Key string The name of the secure store service app
ApplicationPool Required string The name of the application pool it will run in
AuditingEnabled Required boolean Is auditing enabled for this service app
AuditlogMaxSize Write uint32 What is the maximum size of the audit log in MB
DatabaseCredentials Write String What SQL credentials should be used to access the database
DatabaseName Write string The name of the database for the service app
DatabaseServer Write string The name of the database server to host the database
DatabaseAuthenticationType Write string What type of authentication should be used to access the database Windows, SQL
FailoverDatabaseServer Write string The name of the database server hosting a failover instance of the database
PartitionMode Write boolean Is partition mode enabled for this service app
Sharing Write boolean Is sharing enabled for this service app
Ensure Write string Present if the service app should exist, absent if it should not Present, Absent
InstallAccount Write String POWERSHELL 4 ONLY: The account to run this resource as, use PsDscRunAsAccount if using PowerShell 5

Description

This resource is responsible for provisioning and configuring the secure store service application. The parameters passed in (except those related to database specifics) are validated and set when the resource is run, the database values are only used in provisioning of the service application.

Example

SPSecureStoreServiceApp SecureStoreServiceApp
{
    Name            = "Secure Store Service Application"
    ApplicationPool = "SharePoint Service Applications"
    AuditingEnabled = $true
    AuditlogMaxSize = 30
    DatabaseName    = "SP_SecureStore"
    InstallAccount  = $InstallAccount
    Ensure          = "Present"
}
Clone this wiki locally