Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.61 KB

stf_authentication_service.md

File metadata and controls

44 lines (33 loc) · 1.61 KB
page_title subcategory description
citrix_stf_authentication_service Resource - citrix
StoreFront
StoreFront Authentication Service.

citrix_stf_authentication_service (Resource)

StoreFront Authentication Service.

Example Usage

resource "citrix_stf_authentication_service" "example-stf-authentication-service" {
  site_id             = citrix_stf_deployment.example-stf-deployment.site_id
  friendly_name       = "Example STF Authentication Service"
  virtual_path        = "/Citrix/Authentication"
  claims_factory_name = "ExampleClaimsFactoryName"

  // Add depends_on attribute to ensure the StoreFront Authentication Service is created after the Deployment
  depends_on = [ citrix_stf_deployment.example-stf-deployment ]
}

Schema

Optional

  • claims_factory_name (String) The claims factory names to use for the StoreFront authentication services. Defaults to standardClaimsFactory.
  • friendly_name (String) The friendly name the authentication service should be known as. Defaults to Authentication Service.
  • site_id (String) The IIS site to configure the authentication service for. Defaults to 1.
  • virtual_path (String) The IIS virtual path to use for the authentication service. Defaults to /Citrix/Authentication.

Import

Import is supported using the following syntax:

# StoreFront Authentication Service can be imported with the IIS Site Id and Virtual Path
terraform import citrix_stf_deployment.example-stf-deployment 1,"/Citrix/Auth"