1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. SystemSaml
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.SystemSaml

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    Global settings for SAML authentication.

    The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • fabric_idp: fortimanager.SystemSamlFabricidp
    • service_providers: fortimanager.SystemSamlServiceproviders

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystemSaml("trname", {
        defaultProfile: "Restricted_User",
        loginAutoRedirect: "disable",
        role: "SP",
        status: "disable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystemSaml("trname",
        default_profile="Restricted_User",
        login_auto_redirect="disable",
        role="SP",
        status="disable")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fortimanager.NewSystemSaml(ctx, "trname", &fortimanager.SystemSamlArgs{
    			DefaultProfile:    pulumi.String("Restricted_User"),
    			LoginAutoRedirect: pulumi.String("disable"),
    			Role:              pulumi.String("SP"),
    			Status:            pulumi.String("disable"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortimanager.SystemSaml("trname", new()
        {
            DefaultProfile = "Restricted_User",
            LoginAutoRedirect = "disable",
            Role = "SP",
            Status = "disable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemSaml;
    import com.pulumi.fortimanager.SystemSamlArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var trname = new SystemSaml("trname", SystemSamlArgs.builder()
                .defaultProfile("Restricted_User")
                .loginAutoRedirect("disable")
                .role("SP")
                .status("disable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystemSaml
        properties:
          defaultProfile: Restricted_User
          loginAutoRedirect: disable
          role: SP
          status: disable
    

    Create SystemSaml Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SystemSaml(name: string, args?: SystemSamlArgs, opts?: CustomResourceOptions);
    @overload
    def SystemSaml(resource_name: str,
                   args: Optional[SystemSamlArgs] = None,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemSaml(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   acs_url: Optional[str] = None,
                   auth_request_signed: Optional[str] = None,
                   cert: Optional[str] = None,
                   default_profile: Optional[str] = None,
                   dynamic_sort_subtable: Optional[str] = None,
                   entity_id: Optional[str] = None,
                   fabric_idps: Optional[Sequence[SystemSamlFabricIdpArgs]] = None,
                   forticloud_sso: Optional[str] = None,
                   idp_cert: Optional[str] = None,
                   idp_entity_id: Optional[str] = None,
                   idp_single_logout_url: Optional[str] = None,
                   idp_single_sign_on_url: Optional[str] = None,
                   login_auto_redirect: Optional[str] = None,
                   role: Optional[str] = None,
                   server_address: Optional[str] = None,
                   service_providers: Optional[Sequence[SystemSamlServiceProviderArgs]] = None,
                   sls_url: Optional[str] = None,
                   status: Optional[str] = None,
                   system_saml_id: Optional[str] = None,
                   user_auto_create: Optional[str] = None,
                   want_assertions_signed: Optional[str] = None)
    func NewSystemSaml(ctx *Context, name string, args *SystemSamlArgs, opts ...ResourceOption) (*SystemSaml, error)
    public SystemSaml(string name, SystemSamlArgs? args = null, CustomResourceOptions? opts = null)
    public SystemSaml(String name, SystemSamlArgs args)
    public SystemSaml(String name, SystemSamlArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemSaml
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args SystemSamlArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args SystemSamlArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args SystemSamlArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemSamlArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemSamlArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var systemSamlResource = new Fortimanager.SystemSaml("systemSamlResource", new()
    {
        AcsUrl = "string",
        AuthRequestSigned = "string",
        Cert = "string",
        DefaultProfile = "string",
        DynamicSortSubtable = "string",
        EntityId = "string",
        FabricIdps = new[]
        {
            new Fortimanager.Inputs.SystemSamlFabricIdpArgs
            {
                DevId = "string",
                IdpCert = "string",
                IdpEntityId = "string",
                IdpSingleLogoutUrl = "string",
                IdpSingleSignOnUrl = "string",
                IdpStatus = "string",
            },
        },
        ForticloudSso = "string",
        IdpCert = "string",
        IdpEntityId = "string",
        IdpSingleLogoutUrl = "string",
        IdpSingleSignOnUrl = "string",
        LoginAutoRedirect = "string",
        Role = "string",
        ServerAddress = "string",
        ServiceProviders = new[]
        {
            new Fortimanager.Inputs.SystemSamlServiceProviderArgs
            {
                IdpEntityId = "string",
                IdpSingleLogoutUrl = "string",
                IdpSingleSignOnUrl = "string",
                Name = "string",
                Prefix = "string",
                SpAdom = "string",
                SpCert = "string",
                SpEntityId = "string",
                SpProfile = "string",
                SpSingleLogoutUrl = "string",
                SpSingleSignOnUrl = "string",
            },
        },
        SlsUrl = "string",
        Status = "string",
        SystemSamlId = "string",
        UserAutoCreate = "string",
        WantAssertionsSigned = "string",
    });
    
    example, err := fortimanager.NewSystemSaml(ctx, "systemSamlResource", &fortimanager.SystemSamlArgs{
    AcsUrl: pulumi.String("string"),
    AuthRequestSigned: pulumi.String("string"),
    Cert: pulumi.String("string"),
    DefaultProfile: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    EntityId: pulumi.String("string"),
    FabricIdps: .SystemSamlFabricIdpTypeArray{
    &.SystemSamlFabricIdpTypeArgs{
    DevId: pulumi.String("string"),
    IdpCert: pulumi.String("string"),
    IdpEntityId: pulumi.String("string"),
    IdpSingleLogoutUrl: pulumi.String("string"),
    IdpSingleSignOnUrl: pulumi.String("string"),
    IdpStatus: pulumi.String("string"),
    },
    },
    ForticloudSso: pulumi.String("string"),
    IdpCert: pulumi.String("string"),
    IdpEntityId: pulumi.String("string"),
    IdpSingleLogoutUrl: pulumi.String("string"),
    IdpSingleSignOnUrl: pulumi.String("string"),
    LoginAutoRedirect: pulumi.String("string"),
    Role: pulumi.String("string"),
    ServerAddress: pulumi.String("string"),
    ServiceProviders: .SystemSamlServiceProviderArray{
    &.SystemSamlServiceProviderArgs{
    IdpEntityId: pulumi.String("string"),
    IdpSingleLogoutUrl: pulumi.String("string"),
    IdpSingleSignOnUrl: pulumi.String("string"),
    Name: pulumi.String("string"),
    Prefix: pulumi.String("string"),
    SpAdom: pulumi.String("string"),
    SpCert: pulumi.String("string"),
    SpEntityId: pulumi.String("string"),
    SpProfile: pulumi.String("string"),
    SpSingleLogoutUrl: pulumi.String("string"),
    SpSingleSignOnUrl: pulumi.String("string"),
    },
    },
    SlsUrl: pulumi.String("string"),
    Status: pulumi.String("string"),
    SystemSamlId: pulumi.String("string"),
    UserAutoCreate: pulumi.String("string"),
    WantAssertionsSigned: pulumi.String("string"),
    })
    
    var systemSamlResource = new SystemSaml("systemSamlResource", SystemSamlArgs.builder()
        .acsUrl("string")
        .authRequestSigned("string")
        .cert("string")
        .defaultProfile("string")
        .dynamicSortSubtable("string")
        .entityId("string")
        .fabricIdps(SystemSamlFabricIdpArgs.builder()
            .devId("string")
            .idpCert("string")
            .idpEntityId("string")
            .idpSingleLogoutUrl("string")
            .idpSingleSignOnUrl("string")
            .idpStatus("string")
            .build())
        .forticloudSso("string")
        .idpCert("string")
        .idpEntityId("string")
        .idpSingleLogoutUrl("string")
        .idpSingleSignOnUrl("string")
        .loginAutoRedirect("string")
        .role("string")
        .serverAddress("string")
        .serviceProviders(SystemSamlServiceProviderArgs.builder()
            .idpEntityId("string")
            .idpSingleLogoutUrl("string")
            .idpSingleSignOnUrl("string")
            .name("string")
            .prefix("string")
            .spAdom("string")
            .spCert("string")
            .spEntityId("string")
            .spProfile("string")
            .spSingleLogoutUrl("string")
            .spSingleSignOnUrl("string")
            .build())
        .slsUrl("string")
        .status("string")
        .systemSamlId("string")
        .userAutoCreate("string")
        .wantAssertionsSigned("string")
        .build());
    
    system_saml_resource = fortimanager.SystemSaml("systemSamlResource",
        acs_url="string",
        auth_request_signed="string",
        cert="string",
        default_profile="string",
        dynamic_sort_subtable="string",
        entity_id="string",
        fabric_idps=[{
            "dev_id": "string",
            "idp_cert": "string",
            "idp_entity_id": "string",
            "idp_single_logout_url": "string",
            "idp_single_sign_on_url": "string",
            "idp_status": "string",
        }],
        forticloud_sso="string",
        idp_cert="string",
        idp_entity_id="string",
        idp_single_logout_url="string",
        idp_single_sign_on_url="string",
        login_auto_redirect="string",
        role="string",
        server_address="string",
        service_providers=[{
            "idp_entity_id": "string",
            "idp_single_logout_url": "string",
            "idp_single_sign_on_url": "string",
            "name": "string",
            "prefix": "string",
            "sp_adom": "string",
            "sp_cert": "string",
            "sp_entity_id": "string",
            "sp_profile": "string",
            "sp_single_logout_url": "string",
            "sp_single_sign_on_url": "string",
        }],
        sls_url="string",
        status="string",
        system_saml_id="string",
        user_auto_create="string",
        want_assertions_signed="string")
    
    const systemSamlResource = new fortimanager.SystemSaml("systemSamlResource", {
        acsUrl: "string",
        authRequestSigned: "string",
        cert: "string",
        defaultProfile: "string",
        dynamicSortSubtable: "string",
        entityId: "string",
        fabricIdps: [{
            devId: "string",
            idpCert: "string",
            idpEntityId: "string",
            idpSingleLogoutUrl: "string",
            idpSingleSignOnUrl: "string",
            idpStatus: "string",
        }],
        forticloudSso: "string",
        idpCert: "string",
        idpEntityId: "string",
        idpSingleLogoutUrl: "string",
        idpSingleSignOnUrl: "string",
        loginAutoRedirect: "string",
        role: "string",
        serverAddress: "string",
        serviceProviders: [{
            idpEntityId: "string",
            idpSingleLogoutUrl: "string",
            idpSingleSignOnUrl: "string",
            name: "string",
            prefix: "string",
            spAdom: "string",
            spCert: "string",
            spEntityId: "string",
            spProfile: "string",
            spSingleLogoutUrl: "string",
            spSingleSignOnUrl: "string",
        }],
        slsUrl: "string",
        status: "string",
        systemSamlId: "string",
        userAutoCreate: "string",
        wantAssertionsSigned: "string",
    });
    
    type: fortimanager:SystemSaml
    properties:
        acsUrl: string
        authRequestSigned: string
        cert: string
        defaultProfile: string
        dynamicSortSubtable: string
        entityId: string
        fabricIdps:
            - devId: string
              idpCert: string
              idpEntityId: string
              idpSingleLogoutUrl: string
              idpSingleSignOnUrl: string
              idpStatus: string
        forticloudSso: string
        idpCert: string
        idpEntityId: string
        idpSingleLogoutUrl: string
        idpSingleSignOnUrl: string
        loginAutoRedirect: string
        role: string
        serverAddress: string
        serviceProviders:
            - idpEntityId: string
              idpSingleLogoutUrl: string
              idpSingleSignOnUrl: string
              name: string
              prefix: string
              spAdom: string
              spCert: string
              spEntityId: string
              spProfile: string
              spSingleLogoutUrl: string
              spSingleSignOnUrl: string
        slsUrl: string
        status: string
        systemSamlId: string
        userAutoCreate: string
        wantAssertionsSigned: string
    

    SystemSaml Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The SystemSaml resource accepts the following input properties:

    AcsUrl string
    SP ACS(login) URL.
    AuthRequestSigned string
    Enable/Disable auth request signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    Cert string
    Certificate name.
    DefaultProfile string
    Default Profile Name.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    EntityId string
    SP entity ID.
    FabricIdps List<SystemSamlFabricIdp>
    Fabric-Idp. The structure of fabric_idp block is documented below.
    ForticloudSso string
    Enable/disable FortiCloud SSO (default = disable). disable - Disable Forticloud SSO. enable - Enabld Forticloud SSO. Valid values: disable, enable.
    IdpCert string
    IDP Certificate name.
    IdpEntityId string
    IDP entity ID.
    IdpSingleLogoutUrl string
    IDP single logout url.
    IdpSingleSignOnUrl string
    IDP single sign-on URL.
    LoginAutoRedirect string
    Enable/Disable auto redirect to IDP login page. disable - Disable auto redirect to IDP Login Page. enable - Enable auto redirect to IDP Login Page. Valid values: disable, enable.
    Role string
    SAML role. IDP - IDentiy Provider. SP - Service Provider. FAB-SP - Fabric Service Provider. Valid values: IDP, SP, FAB-SP.
    ServerAddress string
    server address.
    ServiceProviders List<SystemSamlServiceProvider>
    Service-Providers. The structure of service_providers block is documented below.
    SlsUrl string
    SP SLS(logout) URL.
    Status string
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    SystemSamlId string
    an identifier for the resource.
    UserAutoCreate string
    Enable/disable user auto creation (default = disable). disable - Disable auto create user. enable - Enable auto create user. Valid values: disable, enable.
    WantAssertionsSigned string
    Enable/Disable want assertions signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    AcsUrl string
    SP ACS(login) URL.
    AuthRequestSigned string
    Enable/Disable auth request signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    Cert string
    Certificate name.
    DefaultProfile string
    Default Profile Name.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    EntityId string
    SP entity ID.
    FabricIdps []SystemSamlFabricIdpTypeArgs
    Fabric-Idp. The structure of fabric_idp block is documented below.
    ForticloudSso string
    Enable/disable FortiCloud SSO (default = disable). disable - Disable Forticloud SSO. enable - Enabld Forticloud SSO. Valid values: disable, enable.
    IdpCert string
    IDP Certificate name.
    IdpEntityId string
    IDP entity ID.
    IdpSingleLogoutUrl string
    IDP single logout url.
    IdpSingleSignOnUrl string
    IDP single sign-on URL.
    LoginAutoRedirect string
    Enable/Disable auto redirect to IDP login page. disable - Disable auto redirect to IDP Login Page. enable - Enable auto redirect to IDP Login Page. Valid values: disable, enable.
    Role string
    SAML role. IDP - IDentiy Provider. SP - Service Provider. FAB-SP - Fabric Service Provider. Valid values: IDP, SP, FAB-SP.
    ServerAddress string
    server address.
    ServiceProviders []SystemSamlServiceProviderArgs
    Service-Providers. The structure of service_providers block is documented below.
    SlsUrl string
    SP SLS(logout) URL.
    Status string
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    SystemSamlId string
    an identifier for the resource.
    UserAutoCreate string
    Enable/disable user auto creation (default = disable). disable - Disable auto create user. enable - Enable auto create user. Valid values: disable, enable.
    WantAssertionsSigned string
    Enable/Disable want assertions signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    acsUrl String
    SP ACS(login) URL.
    authRequestSigned String
    Enable/Disable auth request signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    cert String
    Certificate name.
    defaultProfile String
    Default Profile Name.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entityId String
    SP entity ID.
    fabricIdps List<SystemSamlFabricIdp>
    Fabric-Idp. The structure of fabric_idp block is documented below.
    forticloudSso String
    Enable/disable FortiCloud SSO (default = disable). disable - Disable Forticloud SSO. enable - Enabld Forticloud SSO. Valid values: disable, enable.
    idpCert String
    IDP Certificate name.
    idpEntityId String
    IDP entity ID.
    idpSingleLogoutUrl String
    IDP single logout url.
    idpSingleSignOnUrl String
    IDP single sign-on URL.
    loginAutoRedirect String
    Enable/Disable auto redirect to IDP login page. disable - Disable auto redirect to IDP Login Page. enable - Enable auto redirect to IDP Login Page. Valid values: disable, enable.
    role String
    SAML role. IDP - IDentiy Provider. SP - Service Provider. FAB-SP - Fabric Service Provider. Valid values: IDP, SP, FAB-SP.
    serverAddress String
    server address.
    serviceProviders List<SystemSamlServiceProvider>
    Service-Providers. The structure of service_providers block is documented below.
    slsUrl String
    SP SLS(logout) URL.
    status String
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    systemSamlId String
    an identifier for the resource.
    userAutoCreate String
    Enable/disable user auto creation (default = disable). disable - Disable auto create user. enable - Enable auto create user. Valid values: disable, enable.
    wantAssertionsSigned String
    Enable/Disable want assertions signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    acsUrl string
    SP ACS(login) URL.
    authRequestSigned string
    Enable/Disable auth request signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    cert string
    Certificate name.
    defaultProfile string
    Default Profile Name.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entityId string
    SP entity ID.
    fabricIdps SystemSamlFabricIdp[]
    Fabric-Idp. The structure of fabric_idp block is documented below.
    forticloudSso string
    Enable/disable FortiCloud SSO (default = disable). disable - Disable Forticloud SSO. enable - Enabld Forticloud SSO. Valid values: disable, enable.
    idpCert string
    IDP Certificate name.
    idpEntityId string
    IDP entity ID.
    idpSingleLogoutUrl string
    IDP single logout url.
    idpSingleSignOnUrl string
    IDP single sign-on URL.
    loginAutoRedirect string
    Enable/Disable auto redirect to IDP login page. disable - Disable auto redirect to IDP Login Page. enable - Enable auto redirect to IDP Login Page. Valid values: disable, enable.
    role string
    SAML role. IDP - IDentiy Provider. SP - Service Provider. FAB-SP - Fabric Service Provider. Valid values: IDP, SP, FAB-SP.
    serverAddress string
    server address.
    serviceProviders SystemSamlServiceProvider[]
    Service-Providers. The structure of service_providers block is documented below.
    slsUrl string
    SP SLS(logout) URL.
    status string
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    systemSamlId string
    an identifier for the resource.
    userAutoCreate string
    Enable/disable user auto creation (default = disable). disable - Disable auto create user. enable - Enable auto create user. Valid values: disable, enable.
    wantAssertionsSigned string
    Enable/Disable want assertions signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    acs_url str
    SP ACS(login) URL.
    auth_request_signed str
    Enable/Disable auth request signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    cert str
    Certificate name.
    default_profile str
    Default Profile Name.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entity_id str
    SP entity ID.
    fabric_idps Sequence[SystemSamlFabricIdpArgs]
    Fabric-Idp. The structure of fabric_idp block is documented below.
    forticloud_sso str
    Enable/disable FortiCloud SSO (default = disable). disable - Disable Forticloud SSO. enable - Enabld Forticloud SSO. Valid values: disable, enable.
    idp_cert str
    IDP Certificate name.
    idp_entity_id str
    IDP entity ID.
    idp_single_logout_url str
    IDP single logout url.
    idp_single_sign_on_url str
    IDP single sign-on URL.
    login_auto_redirect str
    Enable/Disable auto redirect to IDP login page. disable - Disable auto redirect to IDP Login Page. enable - Enable auto redirect to IDP Login Page. Valid values: disable, enable.
    role str
    SAML role. IDP - IDentiy Provider. SP - Service Provider. FAB-SP - Fabric Service Provider. Valid values: IDP, SP, FAB-SP.
    server_address str
    server address.
    service_providers Sequence[SystemSamlServiceProviderArgs]
    Service-Providers. The structure of service_providers block is documented below.
    sls_url str
    SP SLS(logout) URL.
    status str
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    system_saml_id str
    an identifier for the resource.
    user_auto_create str
    Enable/disable user auto creation (default = disable). disable - Disable auto create user. enable - Enable auto create user. Valid values: disable, enable.
    want_assertions_signed str
    Enable/Disable want assertions signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    acsUrl String
    SP ACS(login) URL.
    authRequestSigned String
    Enable/Disable auth request signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    cert String
    Certificate name.
    defaultProfile String
    Default Profile Name.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entityId String
    SP entity ID.
    fabricIdps List<Property Map>
    Fabric-Idp. The structure of fabric_idp block is documented below.
    forticloudSso String
    Enable/disable FortiCloud SSO (default = disable). disable - Disable Forticloud SSO. enable - Enabld Forticloud SSO. Valid values: disable, enable.
    idpCert String
    IDP Certificate name.
    idpEntityId String
    IDP entity ID.
    idpSingleLogoutUrl String
    IDP single logout url.
    idpSingleSignOnUrl String
    IDP single sign-on URL.
    loginAutoRedirect String
    Enable/Disable auto redirect to IDP login page. disable - Disable auto redirect to IDP Login Page. enable - Enable auto redirect to IDP Login Page. Valid values: disable, enable.
    role String
    SAML role. IDP - IDentiy Provider. SP - Service Provider. FAB-SP - Fabric Service Provider. Valid values: IDP, SP, FAB-SP.
    serverAddress String
    server address.
    serviceProviders List<Property Map>
    Service-Providers. The structure of service_providers block is documented below.
    slsUrl String
    SP SLS(logout) URL.
    status String
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    systemSamlId String
    an identifier for the resource.
    userAutoCreate String
    Enable/disable user auto creation (default = disable). disable - Disable auto create user. enable - Enable auto create user. Valid values: disable, enable.
    wantAssertionsSigned String
    Enable/Disable want assertions signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SystemSaml resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing SystemSaml Resource

    Get an existing SystemSaml resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: SystemSamlState, opts?: CustomResourceOptions): SystemSaml
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            acs_url: Optional[str] = None,
            auth_request_signed: Optional[str] = None,
            cert: Optional[str] = None,
            default_profile: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            entity_id: Optional[str] = None,
            fabric_idps: Optional[Sequence[SystemSamlFabricIdpArgs]] = None,
            forticloud_sso: Optional[str] = None,
            idp_cert: Optional[str] = None,
            idp_entity_id: Optional[str] = None,
            idp_single_logout_url: Optional[str] = None,
            idp_single_sign_on_url: Optional[str] = None,
            login_auto_redirect: Optional[str] = None,
            role: Optional[str] = None,
            server_address: Optional[str] = None,
            service_providers: Optional[Sequence[SystemSamlServiceProviderArgs]] = None,
            sls_url: Optional[str] = None,
            status: Optional[str] = None,
            system_saml_id: Optional[str] = None,
            user_auto_create: Optional[str] = None,
            want_assertions_signed: Optional[str] = None) -> SystemSaml
    func GetSystemSaml(ctx *Context, name string, id IDInput, state *SystemSamlState, opts ...ResourceOption) (*SystemSaml, error)
    public static SystemSaml Get(string name, Input<string> id, SystemSamlState? state, CustomResourceOptions? opts = null)
    public static SystemSaml get(String name, Output<String> id, SystemSamlState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemSaml    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AcsUrl string
    SP ACS(login) URL.
    AuthRequestSigned string
    Enable/Disable auth request signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    Cert string
    Certificate name.
    DefaultProfile string
    Default Profile Name.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    EntityId string
    SP entity ID.
    FabricIdps List<SystemSamlFabricIdp>
    Fabric-Idp. The structure of fabric_idp block is documented below.
    ForticloudSso string
    Enable/disable FortiCloud SSO (default = disable). disable - Disable Forticloud SSO. enable - Enabld Forticloud SSO. Valid values: disable, enable.
    IdpCert string
    IDP Certificate name.
    IdpEntityId string
    IDP entity ID.
    IdpSingleLogoutUrl string
    IDP single logout url.
    IdpSingleSignOnUrl string
    IDP single sign-on URL.
    LoginAutoRedirect string
    Enable/Disable auto redirect to IDP login page. disable - Disable auto redirect to IDP Login Page. enable - Enable auto redirect to IDP Login Page. Valid values: disable, enable.
    Role string
    SAML role. IDP - IDentiy Provider. SP - Service Provider. FAB-SP - Fabric Service Provider. Valid values: IDP, SP, FAB-SP.
    ServerAddress string
    server address.
    ServiceProviders List<SystemSamlServiceProvider>
    Service-Providers. The structure of service_providers block is documented below.
    SlsUrl string
    SP SLS(logout) URL.
    Status string
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    SystemSamlId string
    an identifier for the resource.
    UserAutoCreate string
    Enable/disable user auto creation (default = disable). disable - Disable auto create user. enable - Enable auto create user. Valid values: disable, enable.
    WantAssertionsSigned string
    Enable/Disable want assertions signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    AcsUrl string
    SP ACS(login) URL.
    AuthRequestSigned string
    Enable/Disable auth request signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    Cert string
    Certificate name.
    DefaultProfile string
    Default Profile Name.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    EntityId string
    SP entity ID.
    FabricIdps []SystemSamlFabricIdpTypeArgs
    Fabric-Idp. The structure of fabric_idp block is documented below.
    ForticloudSso string
    Enable/disable FortiCloud SSO (default = disable). disable - Disable Forticloud SSO. enable - Enabld Forticloud SSO. Valid values: disable, enable.
    IdpCert string
    IDP Certificate name.
    IdpEntityId string
    IDP entity ID.
    IdpSingleLogoutUrl string
    IDP single logout url.
    IdpSingleSignOnUrl string
    IDP single sign-on URL.
    LoginAutoRedirect string
    Enable/Disable auto redirect to IDP login page. disable - Disable auto redirect to IDP Login Page. enable - Enable auto redirect to IDP Login Page. Valid values: disable, enable.
    Role string
    SAML role. IDP - IDentiy Provider. SP - Service Provider. FAB-SP - Fabric Service Provider. Valid values: IDP, SP, FAB-SP.
    ServerAddress string
    server address.
    ServiceProviders []SystemSamlServiceProviderArgs
    Service-Providers. The structure of service_providers block is documented below.
    SlsUrl string
    SP SLS(logout) URL.
    Status string
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    SystemSamlId string
    an identifier for the resource.
    UserAutoCreate string
    Enable/disable user auto creation (default = disable). disable - Disable auto create user. enable - Enable auto create user. Valid values: disable, enable.
    WantAssertionsSigned string
    Enable/Disable want assertions signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    acsUrl String
    SP ACS(login) URL.
    authRequestSigned String
    Enable/Disable auth request signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    cert String
    Certificate name.
    defaultProfile String
    Default Profile Name.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entityId String
    SP entity ID.
    fabricIdps List<SystemSamlFabricIdp>
    Fabric-Idp. The structure of fabric_idp block is documented below.
    forticloudSso String
    Enable/disable FortiCloud SSO (default = disable). disable - Disable Forticloud SSO. enable - Enabld Forticloud SSO. Valid values: disable, enable.
    idpCert String
    IDP Certificate name.
    idpEntityId String
    IDP entity ID.
    idpSingleLogoutUrl String
    IDP single logout url.
    idpSingleSignOnUrl String
    IDP single sign-on URL.
    loginAutoRedirect String
    Enable/Disable auto redirect to IDP login page. disable - Disable auto redirect to IDP Login Page. enable - Enable auto redirect to IDP Login Page. Valid values: disable, enable.
    role String
    SAML role. IDP - IDentiy Provider. SP - Service Provider. FAB-SP - Fabric Service Provider. Valid values: IDP, SP, FAB-SP.
    serverAddress String
    server address.
    serviceProviders List<SystemSamlServiceProvider>
    Service-Providers. The structure of service_providers block is documented below.
    slsUrl String
    SP SLS(logout) URL.
    status String
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    systemSamlId String
    an identifier for the resource.
    userAutoCreate String
    Enable/disable user auto creation (default = disable). disable - Disable auto create user. enable - Enable auto create user. Valid values: disable, enable.
    wantAssertionsSigned String
    Enable/Disable want assertions signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    acsUrl string
    SP ACS(login) URL.
    authRequestSigned string
    Enable/Disable auth request signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    cert string
    Certificate name.
    defaultProfile string
    Default Profile Name.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entityId string
    SP entity ID.
    fabricIdps SystemSamlFabricIdp[]
    Fabric-Idp. The structure of fabric_idp block is documented below.
    forticloudSso string
    Enable/disable FortiCloud SSO (default = disable). disable - Disable Forticloud SSO. enable - Enabld Forticloud SSO. Valid values: disable, enable.
    idpCert string
    IDP Certificate name.
    idpEntityId string
    IDP entity ID.
    idpSingleLogoutUrl string
    IDP single logout url.
    idpSingleSignOnUrl string
    IDP single sign-on URL.
    loginAutoRedirect string
    Enable/Disable auto redirect to IDP login page. disable - Disable auto redirect to IDP Login Page. enable - Enable auto redirect to IDP Login Page. Valid values: disable, enable.
    role string
    SAML role. IDP - IDentiy Provider. SP - Service Provider. FAB-SP - Fabric Service Provider. Valid values: IDP, SP, FAB-SP.
    serverAddress string
    server address.
    serviceProviders SystemSamlServiceProvider[]
    Service-Providers. The structure of service_providers block is documented below.
    slsUrl string
    SP SLS(logout) URL.
    status string
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    systemSamlId string
    an identifier for the resource.
    userAutoCreate string
    Enable/disable user auto creation (default = disable). disable - Disable auto create user. enable - Enable auto create user. Valid values: disable, enable.
    wantAssertionsSigned string
    Enable/Disable want assertions signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    acs_url str
    SP ACS(login) URL.
    auth_request_signed str
    Enable/Disable auth request signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    cert str
    Certificate name.
    default_profile str
    Default Profile Name.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entity_id str
    SP entity ID.
    fabric_idps Sequence[SystemSamlFabricIdpArgs]
    Fabric-Idp. The structure of fabric_idp block is documented below.
    forticloud_sso str
    Enable/disable FortiCloud SSO (default = disable). disable - Disable Forticloud SSO. enable - Enabld Forticloud SSO. Valid values: disable, enable.
    idp_cert str
    IDP Certificate name.
    idp_entity_id str
    IDP entity ID.
    idp_single_logout_url str
    IDP single logout url.
    idp_single_sign_on_url str
    IDP single sign-on URL.
    login_auto_redirect str
    Enable/Disable auto redirect to IDP login page. disable - Disable auto redirect to IDP Login Page. enable - Enable auto redirect to IDP Login Page. Valid values: disable, enable.
    role str
    SAML role. IDP - IDentiy Provider. SP - Service Provider. FAB-SP - Fabric Service Provider. Valid values: IDP, SP, FAB-SP.
    server_address str
    server address.
    service_providers Sequence[SystemSamlServiceProviderArgs]
    Service-Providers. The structure of service_providers block is documented below.
    sls_url str
    SP SLS(logout) URL.
    status str
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    system_saml_id str
    an identifier for the resource.
    user_auto_create str
    Enable/disable user auto creation (default = disable). disable - Disable auto create user. enable - Enable auto create user. Valid values: disable, enable.
    want_assertions_signed str
    Enable/Disable want assertions signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    acsUrl String
    SP ACS(login) URL.
    authRequestSigned String
    Enable/Disable auth request signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    cert String
    Certificate name.
    defaultProfile String
    Default Profile Name.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entityId String
    SP entity ID.
    fabricIdps List<Property Map>
    Fabric-Idp. The structure of fabric_idp block is documented below.
    forticloudSso String
    Enable/disable FortiCloud SSO (default = disable). disable - Disable Forticloud SSO. enable - Enabld Forticloud SSO. Valid values: disable, enable.
    idpCert String
    IDP Certificate name.
    idpEntityId String
    IDP entity ID.
    idpSingleLogoutUrl String
    IDP single logout url.
    idpSingleSignOnUrl String
    IDP single sign-on URL.
    loginAutoRedirect String
    Enable/Disable auto redirect to IDP login page. disable - Disable auto redirect to IDP Login Page. enable - Enable auto redirect to IDP Login Page. Valid values: disable, enable.
    role String
    SAML role. IDP - IDentiy Provider. SP - Service Provider. FAB-SP - Fabric Service Provider. Valid values: IDP, SP, FAB-SP.
    serverAddress String
    server address.
    serviceProviders List<Property Map>
    Service-Providers. The structure of service_providers block is documented below.
    slsUrl String
    SP SLS(logout) URL.
    status String
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    systemSamlId String
    an identifier for the resource.
    userAutoCreate String
    Enable/disable user auto creation (default = disable). disable - Disable auto create user. enable - Enable auto create user. Valid values: disable, enable.
    wantAssertionsSigned String
    Enable/Disable want assertions signed. disable - Disable setting. enable - Enable setting. Valid values: disable, enable.

    Supporting Types

    SystemSamlFabricIdp, SystemSamlFabricIdpArgs

    DevId string
    IDP Device ID.
    IdpCert string
    IDP Certificate name.
    IdpEntityId string
    IDP entity ID.
    IdpSingleLogoutUrl string
    IDP single logout url.
    IdpSingleSignOnUrl string
    IDP single sign-on URL.
    IdpStatus string
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    DevId string
    IDP Device ID.
    IdpCert string
    IDP Certificate name.
    IdpEntityId string
    IDP entity ID.
    IdpSingleLogoutUrl string
    IDP single logout url.
    IdpSingleSignOnUrl string
    IDP single sign-on URL.
    IdpStatus string
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    devId String
    IDP Device ID.
    idpCert String
    IDP Certificate name.
    idpEntityId String
    IDP entity ID.
    idpSingleLogoutUrl String
    IDP single logout url.
    idpSingleSignOnUrl String
    IDP single sign-on URL.
    idpStatus String
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    devId string
    IDP Device ID.
    idpCert string
    IDP Certificate name.
    idpEntityId string
    IDP entity ID.
    idpSingleLogoutUrl string
    IDP single logout url.
    idpSingleSignOnUrl string
    IDP single sign-on URL.
    idpStatus string
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    dev_id str
    IDP Device ID.
    idp_cert str
    IDP Certificate name.
    idp_entity_id str
    IDP entity ID.
    idp_single_logout_url str
    IDP single logout url.
    idp_single_sign_on_url str
    IDP single sign-on URL.
    idp_status str
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.
    devId String
    IDP Device ID.
    idpCert String
    IDP Certificate name.
    idpEntityId String
    IDP entity ID.
    idpSingleLogoutUrl String
    IDP single logout url.
    idpSingleSignOnUrl String
    IDP single sign-on URL.
    idpStatus String
    Enable/disable SAML authentication (default = disable). disable - Disable SAML authentication. enable - Enabld SAML authentication. Valid values: disable, enable.

    SystemSamlServiceProvider, SystemSamlServiceProviderArgs

    IdpEntityId string
    IDP Entity ID.
    IdpSingleLogoutUrl string
    IDP single logout url.
    IdpSingleSignOnUrl string
    IDP single sign-on URL.
    Name string
    Name.
    Prefix string
    Prefix.
    SpAdom string
    SP adom name.
    SpCert string
    SP certificate name.
    SpEntityId string
    SP Entity ID.
    SpProfile string
    SP profile name.
    SpSingleLogoutUrl string
    SP single logout URL.
    SpSingleSignOnUrl string
    SP single sign-on URL.
    IdpEntityId string
    IDP Entity ID.
    IdpSingleLogoutUrl string
    IDP single logout url.
    IdpSingleSignOnUrl string
    IDP single sign-on URL.
    Name string
    Name.
    Prefix string
    Prefix.
    SpAdom string
    SP adom name.
    SpCert string
    SP certificate name.
    SpEntityId string
    SP Entity ID.
    SpProfile string
    SP profile name.
    SpSingleLogoutUrl string
    SP single logout URL.
    SpSingleSignOnUrl string
    SP single sign-on URL.
    idpEntityId String
    IDP Entity ID.
    idpSingleLogoutUrl String
    IDP single logout url.
    idpSingleSignOnUrl String
    IDP single sign-on URL.
    name String
    Name.
    prefix String
    Prefix.
    spAdom String
    SP adom name.
    spCert String
    SP certificate name.
    spEntityId String
    SP Entity ID.
    spProfile String
    SP profile name.
    spSingleLogoutUrl String
    SP single logout URL.
    spSingleSignOnUrl String
    SP single sign-on URL.
    idpEntityId string
    IDP Entity ID.
    idpSingleLogoutUrl string
    IDP single logout url.
    idpSingleSignOnUrl string
    IDP single sign-on URL.
    name string
    Name.
    prefix string
    Prefix.
    spAdom string
    SP adom name.
    spCert string
    SP certificate name.
    spEntityId string
    SP Entity ID.
    spProfile string
    SP profile name.
    spSingleLogoutUrl string
    SP single logout URL.
    spSingleSignOnUrl string
    SP single sign-on URL.
    idp_entity_id str
    IDP Entity ID.
    idp_single_logout_url str
    IDP single logout url.
    idp_single_sign_on_url str
    IDP single sign-on URL.
    name str
    Name.
    prefix str
    Prefix.
    sp_adom str
    SP adom name.
    sp_cert str
    SP certificate name.
    sp_entity_id str
    SP Entity ID.
    sp_profile str
    SP profile name.
    sp_single_logout_url str
    SP single logout URL.
    sp_single_sign_on_url str
    SP single sign-on URL.
    idpEntityId String
    IDP Entity ID.
    idpSingleLogoutUrl String
    IDP single logout url.
    idpSingleSignOnUrl String
    IDP single sign-on URL.
    name String
    Name.
    prefix String
    Prefix.
    spAdom String
    SP adom name.
    spCert String
    SP certificate name.
    spEntityId String
    SP Entity ID.
    spProfile String
    SP profile name.
    spSingleLogoutUrl String
    SP single logout URL.
    spSingleSignOnUrl String
    SP single sign-on URL.

    Import

    System Saml can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemSaml:SystemSaml labelname SystemSaml
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev