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

fortimanager.ObjectUserExternalidentityprovider

Explore with Pulumi AI

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

    Configure external identity provider.

    Create ObjectUserExternalidentityprovider Resource

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

    Constructor syntax

    new ObjectUserExternalidentityprovider(name: string, args?: ObjectUserExternalidentityproviderArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectUserExternalidentityprovider(resource_name: str,
                                           args: Optional[ObjectUserExternalidentityproviderArgs] = None,
                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectUserExternalidentityprovider(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           adom: Optional[str] = None,
                                           group_attr_name: Optional[str] = None,
                                           interface_select_method: Optional[str] = None,
                                           interfaces: Optional[Sequence[str]] = None,
                                           name: Optional[str] = None,
                                           object_user_externalidentityprovider_id: Optional[str] = None,
                                           port: Optional[float] = None,
                                           scopetype: Optional[str] = None,
                                           server_identity_check: Optional[str] = None,
                                           source_ip: Optional[str] = None,
                                           timeout: Optional[float] = None,
                                           type: Optional[str] = None,
                                           url: Optional[str] = None,
                                           user_attr_name: Optional[str] = None,
                                           version: Optional[str] = None)
    func NewObjectUserExternalidentityprovider(ctx *Context, name string, args *ObjectUserExternalidentityproviderArgs, opts ...ResourceOption) (*ObjectUserExternalidentityprovider, error)
    public ObjectUserExternalidentityprovider(string name, ObjectUserExternalidentityproviderArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectUserExternalidentityprovider(String name, ObjectUserExternalidentityproviderArgs args)
    public ObjectUserExternalidentityprovider(String name, ObjectUserExternalidentityproviderArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectUserExternalidentityprovider
    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 ObjectUserExternalidentityproviderArgs
    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 ObjectUserExternalidentityproviderArgs
    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 ObjectUserExternalidentityproviderArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectUserExternalidentityproviderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectUserExternalidentityproviderArgs
    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 objectUserExternalidentityproviderResource = new Fortimanager.ObjectUserExternalidentityprovider("objectUserExternalidentityproviderResource", new()
    {
        Adom = "string",
        GroupAttrName = "string",
        InterfaceSelectMethod = "string",
        Interfaces = new[]
        {
            "string",
        },
        Name = "string",
        ObjectUserExternalidentityproviderId = "string",
        Port = 0,
        Scopetype = "string",
        ServerIdentityCheck = "string",
        SourceIp = "string",
        Timeout = 0,
        Type = "string",
        Url = "string",
        UserAttrName = "string",
        Version = "string",
    });
    
    example, err := fortimanager.NewObjectUserExternalidentityprovider(ctx, "objectUserExternalidentityproviderResource", &fortimanager.ObjectUserExternalidentityproviderArgs{
    Adom: pulumi.String("string"),
    GroupAttrName: pulumi.String("string"),
    InterfaceSelectMethod: pulumi.String("string"),
    Interfaces: pulumi.StringArray{
    pulumi.String("string"),
    },
    Name: pulumi.String("string"),
    ObjectUserExternalidentityproviderId: pulumi.String("string"),
    Port: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    ServerIdentityCheck: pulumi.String("string"),
    SourceIp: pulumi.String("string"),
    Timeout: pulumi.Float64(0),
    Type: pulumi.String("string"),
    Url: pulumi.String("string"),
    UserAttrName: pulumi.String("string"),
    Version: pulumi.String("string"),
    })
    
    var objectUserExternalidentityproviderResource = new ObjectUserExternalidentityprovider("objectUserExternalidentityproviderResource", ObjectUserExternalidentityproviderArgs.builder()
        .adom("string")
        .groupAttrName("string")
        .interfaceSelectMethod("string")
        .interfaces("string")
        .name("string")
        .objectUserExternalidentityproviderId("string")
        .port(0)
        .scopetype("string")
        .serverIdentityCheck("string")
        .sourceIp("string")
        .timeout(0)
        .type("string")
        .url("string")
        .userAttrName("string")
        .version("string")
        .build());
    
    object_user_externalidentityprovider_resource = fortimanager.ObjectUserExternalidentityprovider("objectUserExternalidentityproviderResource",
        adom="string",
        group_attr_name="string",
        interface_select_method="string",
        interfaces=["string"],
        name="string",
        object_user_externalidentityprovider_id="string",
        port=0,
        scopetype="string",
        server_identity_check="string",
        source_ip="string",
        timeout=0,
        type="string",
        url="string",
        user_attr_name="string",
        version="string")
    
    const objectUserExternalidentityproviderResource = new fortimanager.ObjectUserExternalidentityprovider("objectUserExternalidentityproviderResource", {
        adom: "string",
        groupAttrName: "string",
        interfaceSelectMethod: "string",
        interfaces: ["string"],
        name: "string",
        objectUserExternalidentityproviderId: "string",
        port: 0,
        scopetype: "string",
        serverIdentityCheck: "string",
        sourceIp: "string",
        timeout: 0,
        type: "string",
        url: "string",
        userAttrName: "string",
        version: "string",
    });
    
    type: fortimanager:ObjectUserExternalidentityprovider
    properties:
        adom: string
        groupAttrName: string
        interfaceSelectMethod: string
        interfaces:
            - string
        name: string
        objectUserExternalidentityproviderId: string
        port: 0
        scopetype: string
        serverIdentityCheck: string
        sourceIp: string
        timeout: 0
        type: string
        url: string
        userAttrName: string
        version: string
    

    ObjectUserExternalidentityprovider 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 ObjectUserExternalidentityprovider resource accepts the following input properties:

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    GroupAttrName string
    Group attribute name in authentication query.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    Interfaces List<string>
    Specify outgoing interface to reach server.
    Name string
    External identity provider name.
    ObjectUserExternalidentityproviderId string
    an identifier for the resource with format {{name}}.
    Port double
    External identity provider service port number (0 to use default).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    ServerIdentityCheck string
    Enable/disable server's identity check against its certificate and subject alternative name(s). Valid values: disable, enable.
    SourceIp string
    Use this IPv4/v6 address to connect to the external identity provider.
    Timeout double
    Connection timeout value in seconds (default=5).
    Type string
    External identity provider type. Valid values: ms-graph.
    Url string
    Url.
    UserAttrName string
    User attribute name in authentication query.
    Version string
    External identity API version. Valid values: beta, v1.0.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    GroupAttrName string
    Group attribute name in authentication query.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    Interfaces []string
    Specify outgoing interface to reach server.
    Name string
    External identity provider name.
    ObjectUserExternalidentityproviderId string
    an identifier for the resource with format {{name}}.
    Port float64
    External identity provider service port number (0 to use default).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    ServerIdentityCheck string
    Enable/disable server's identity check against its certificate and subject alternative name(s). Valid values: disable, enable.
    SourceIp string
    Use this IPv4/v6 address to connect to the external identity provider.
    Timeout float64
    Connection timeout value in seconds (default=5).
    Type string
    External identity provider type. Valid values: ms-graph.
    Url string
    Url.
    UserAttrName string
    User attribute name in authentication query.
    Version string
    External identity API version. Valid values: beta, v1.0.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    groupAttrName String
    Group attribute name in authentication query.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces List<String>
    Specify outgoing interface to reach server.
    name String
    External identity provider name.
    objectUserExternalidentityproviderId String
    an identifier for the resource with format {{name}}.
    port Double
    External identity provider service port number (0 to use default).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    serverIdentityCheck String
    Enable/disable server's identity check against its certificate and subject alternative name(s). Valid values: disable, enable.
    sourceIp String
    Use this IPv4/v6 address to connect to the external identity provider.
    timeout Double
    Connection timeout value in seconds (default=5).
    type String
    External identity provider type. Valid values: ms-graph.
    url String
    Url.
    userAttrName String
    User attribute name in authentication query.
    version String
    External identity API version. Valid values: beta, v1.0.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    groupAttrName string
    Group attribute name in authentication query.
    interfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces string[]
    Specify outgoing interface to reach server.
    name string
    External identity provider name.
    objectUserExternalidentityproviderId string
    an identifier for the resource with format {{name}}.
    port number
    External identity provider service port number (0 to use default).
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    serverIdentityCheck string
    Enable/disable server's identity check against its certificate and subject alternative name(s). Valid values: disable, enable.
    sourceIp string
    Use this IPv4/v6 address to connect to the external identity provider.
    timeout number
    Connection timeout value in seconds (default=5).
    type string
    External identity provider type. Valid values: ms-graph.
    url string
    Url.
    userAttrName string
    User attribute name in authentication query.
    version string
    External identity API version. Valid values: beta, v1.0.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    group_attr_name str
    Group attribute name in authentication query.
    interface_select_method str
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces Sequence[str]
    Specify outgoing interface to reach server.
    name str
    External identity provider name.
    object_user_externalidentityprovider_id str
    an identifier for the resource with format {{name}}.
    port float
    External identity provider service port number (0 to use default).
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server_identity_check str
    Enable/disable server's identity check against its certificate and subject alternative name(s). Valid values: disable, enable.
    source_ip str
    Use this IPv4/v6 address to connect to the external identity provider.
    timeout float
    Connection timeout value in seconds (default=5).
    type str
    External identity provider type. Valid values: ms-graph.
    url str
    Url.
    user_attr_name str
    User attribute name in authentication query.
    version str
    External identity API version. Valid values: beta, v1.0.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    groupAttrName String
    Group attribute name in authentication query.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces List<String>
    Specify outgoing interface to reach server.
    name String
    External identity provider name.
    objectUserExternalidentityproviderId String
    an identifier for the resource with format {{name}}.
    port Number
    External identity provider service port number (0 to use default).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    serverIdentityCheck String
    Enable/disable server's identity check against its certificate and subject alternative name(s). Valid values: disable, enable.
    sourceIp String
    Use this IPv4/v6 address to connect to the external identity provider.
    timeout Number
    Connection timeout value in seconds (default=5).
    type String
    External identity provider type. Valid values: ms-graph.
    url String
    Url.
    userAttrName String
    User attribute name in authentication query.
    version String
    External identity API version. Valid values: beta, v1.0.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectUserExternalidentityprovider 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 ObjectUserExternalidentityprovider Resource

    Get an existing ObjectUserExternalidentityprovider 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?: ObjectUserExternalidentityproviderState, opts?: CustomResourceOptions): ObjectUserExternalidentityprovider
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            group_attr_name: Optional[str] = None,
            interface_select_method: Optional[str] = None,
            interfaces: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            object_user_externalidentityprovider_id: Optional[str] = None,
            port: Optional[float] = None,
            scopetype: Optional[str] = None,
            server_identity_check: Optional[str] = None,
            source_ip: Optional[str] = None,
            timeout: Optional[float] = None,
            type: Optional[str] = None,
            url: Optional[str] = None,
            user_attr_name: Optional[str] = None,
            version: Optional[str] = None) -> ObjectUserExternalidentityprovider
    func GetObjectUserExternalidentityprovider(ctx *Context, name string, id IDInput, state *ObjectUserExternalidentityproviderState, opts ...ResourceOption) (*ObjectUserExternalidentityprovider, error)
    public static ObjectUserExternalidentityprovider Get(string name, Input<string> id, ObjectUserExternalidentityproviderState? state, CustomResourceOptions? opts = null)
    public static ObjectUserExternalidentityprovider get(String name, Output<String> id, ObjectUserExternalidentityproviderState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectUserExternalidentityprovider    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:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    GroupAttrName string
    Group attribute name in authentication query.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    Interfaces List<string>
    Specify outgoing interface to reach server.
    Name string
    External identity provider name.
    ObjectUserExternalidentityproviderId string
    an identifier for the resource with format {{name}}.
    Port double
    External identity provider service port number (0 to use default).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    ServerIdentityCheck string
    Enable/disable server's identity check against its certificate and subject alternative name(s). Valid values: disable, enable.
    SourceIp string
    Use this IPv4/v6 address to connect to the external identity provider.
    Timeout double
    Connection timeout value in seconds (default=5).
    Type string
    External identity provider type. Valid values: ms-graph.
    Url string
    Url.
    UserAttrName string
    User attribute name in authentication query.
    Version string
    External identity API version. Valid values: beta, v1.0.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    GroupAttrName string
    Group attribute name in authentication query.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    Interfaces []string
    Specify outgoing interface to reach server.
    Name string
    External identity provider name.
    ObjectUserExternalidentityproviderId string
    an identifier for the resource with format {{name}}.
    Port float64
    External identity provider service port number (0 to use default).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    ServerIdentityCheck string
    Enable/disable server's identity check against its certificate and subject alternative name(s). Valid values: disable, enable.
    SourceIp string
    Use this IPv4/v6 address to connect to the external identity provider.
    Timeout float64
    Connection timeout value in seconds (default=5).
    Type string
    External identity provider type. Valid values: ms-graph.
    Url string
    Url.
    UserAttrName string
    User attribute name in authentication query.
    Version string
    External identity API version. Valid values: beta, v1.0.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    groupAttrName String
    Group attribute name in authentication query.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces List<String>
    Specify outgoing interface to reach server.
    name String
    External identity provider name.
    objectUserExternalidentityproviderId String
    an identifier for the resource with format {{name}}.
    port Double
    External identity provider service port number (0 to use default).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    serverIdentityCheck String
    Enable/disable server's identity check against its certificate and subject alternative name(s). Valid values: disable, enable.
    sourceIp String
    Use this IPv4/v6 address to connect to the external identity provider.
    timeout Double
    Connection timeout value in seconds (default=5).
    type String
    External identity provider type. Valid values: ms-graph.
    url String
    Url.
    userAttrName String
    User attribute name in authentication query.
    version String
    External identity API version. Valid values: beta, v1.0.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    groupAttrName string
    Group attribute name in authentication query.
    interfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces string[]
    Specify outgoing interface to reach server.
    name string
    External identity provider name.
    objectUserExternalidentityproviderId string
    an identifier for the resource with format {{name}}.
    port number
    External identity provider service port number (0 to use default).
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    serverIdentityCheck string
    Enable/disable server's identity check against its certificate and subject alternative name(s). Valid values: disable, enable.
    sourceIp string
    Use this IPv4/v6 address to connect to the external identity provider.
    timeout number
    Connection timeout value in seconds (default=5).
    type string
    External identity provider type. Valid values: ms-graph.
    url string
    Url.
    userAttrName string
    User attribute name in authentication query.
    version string
    External identity API version. Valid values: beta, v1.0.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    group_attr_name str
    Group attribute name in authentication query.
    interface_select_method str
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces Sequence[str]
    Specify outgoing interface to reach server.
    name str
    External identity provider name.
    object_user_externalidentityprovider_id str
    an identifier for the resource with format {{name}}.
    port float
    External identity provider service port number (0 to use default).
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server_identity_check str
    Enable/disable server's identity check against its certificate and subject alternative name(s). Valid values: disable, enable.
    source_ip str
    Use this IPv4/v6 address to connect to the external identity provider.
    timeout float
    Connection timeout value in seconds (default=5).
    type str
    External identity provider type. Valid values: ms-graph.
    url str
    Url.
    user_attr_name str
    User attribute name in authentication query.
    version str
    External identity API version. Valid values: beta, v1.0.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    groupAttrName String
    Group attribute name in authentication query.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces List<String>
    Specify outgoing interface to reach server.
    name String
    External identity provider name.
    objectUserExternalidentityproviderId String
    an identifier for the resource with format {{name}}.
    port Number
    External identity provider service port number (0 to use default).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    serverIdentityCheck String
    Enable/disable server's identity check against its certificate and subject alternative name(s). Valid values: disable, enable.
    sourceIp String
    Use this IPv4/v6 address to connect to the external identity provider.
    timeout Number
    Connection timeout value in seconds (default=5).
    type String
    External identity provider type. Valid values: ms-graph.
    url String
    Url.
    userAttrName String
    User attribute name in authentication query.
    version String
    External identity API version. Valid values: beta, v1.0.

    Import

    ObjectUser ExternalIdentityProvider can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectUserExternalidentityprovider:ObjectUserExternalidentityprovider labelname {{name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    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