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

fortimanager.ObjectVpnSslWebPortalLandingpage

Explore with Pulumi AI

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

    Landing page options.

    This resource is a sub resource for variable landing_page of resource fortimanager.ObjectVpnSslWebPortal. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • form_data: fortimanager.ObjectVpnSslWebPortalLandingpageFormdata

    Create ObjectVpnSslWebPortalLandingpage Resource

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

    Constructor syntax

    new ObjectVpnSslWebPortalLandingpage(name: string, args: ObjectVpnSslWebPortalLandingpageArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectVpnSslWebPortalLandingpage(resource_name: str,
                                         args: ObjectVpnSslWebPortalLandingpageArgs,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectVpnSslWebPortalLandingpage(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         portal: Optional[str] = None,
                                         adom: Optional[str] = None,
                                         dynamic_sort_subtable: Optional[str] = None,
                                         form_datas: Optional[Sequence[ObjectVpnSslWebPortalLandingpageFormDataArgs]] = None,
                                         logout_url: Optional[str] = None,
                                         object_vpn_ssl_web_portal_landingpage_id: Optional[str] = None,
                                         scopetype: Optional[str] = None,
                                         sso: Optional[str] = None,
                                         sso_credential: Optional[str] = None,
                                         sso_passwords: Optional[Sequence[str]] = None,
                                         sso_username: Optional[str] = None,
                                         url: Optional[str] = None)
    func NewObjectVpnSslWebPortalLandingpage(ctx *Context, name string, args ObjectVpnSslWebPortalLandingpageArgs, opts ...ResourceOption) (*ObjectVpnSslWebPortalLandingpage, error)
    public ObjectVpnSslWebPortalLandingpage(string name, ObjectVpnSslWebPortalLandingpageArgs args, CustomResourceOptions? opts = null)
    public ObjectVpnSslWebPortalLandingpage(String name, ObjectVpnSslWebPortalLandingpageArgs args)
    public ObjectVpnSslWebPortalLandingpage(String name, ObjectVpnSslWebPortalLandingpageArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectVpnSslWebPortalLandingpage
    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 ObjectVpnSslWebPortalLandingpageArgs
    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 ObjectVpnSslWebPortalLandingpageArgs
    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 ObjectVpnSslWebPortalLandingpageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectVpnSslWebPortalLandingpageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectVpnSslWebPortalLandingpageArgs
    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 objectVpnSslWebPortalLandingpageResource = new Fortimanager.ObjectVpnSslWebPortalLandingpage("objectVpnSslWebPortalLandingpageResource", new()
    {
        Portal = "string",
        Adom = "string",
        DynamicSortSubtable = "string",
        FormDatas = new[]
        {
            new Fortimanager.Inputs.ObjectVpnSslWebPortalLandingpageFormDataArgs
            {
                Name = "string",
                Value = "string",
            },
        },
        LogoutUrl = "string",
        ObjectVpnSslWebPortalLandingpageId = "string",
        Scopetype = "string",
        Sso = "string",
        SsoCredential = "string",
        SsoPasswords = new[]
        {
            "string",
        },
        SsoUsername = "string",
        Url = "string",
    });
    
    example, err := fortimanager.NewObjectVpnSslWebPortalLandingpage(ctx, "objectVpnSslWebPortalLandingpageResource", &fortimanager.ObjectVpnSslWebPortalLandingpageArgs{
    Portal: pulumi.String("string"),
    Adom: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    FormDatas: .ObjectVpnSslWebPortalLandingpageFormDataTypeArray{
    &.ObjectVpnSslWebPortalLandingpageFormDataTypeArgs{
    Name: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    LogoutUrl: pulumi.String("string"),
    ObjectVpnSslWebPortalLandingpageId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Sso: pulumi.String("string"),
    SsoCredential: pulumi.String("string"),
    SsoPasswords: pulumi.StringArray{
    pulumi.String("string"),
    },
    SsoUsername: pulumi.String("string"),
    Url: pulumi.String("string"),
    })
    
    var objectVpnSslWebPortalLandingpageResource = new ObjectVpnSslWebPortalLandingpage("objectVpnSslWebPortalLandingpageResource", ObjectVpnSslWebPortalLandingpageArgs.builder()
        .portal("string")
        .adom("string")
        .dynamicSortSubtable("string")
        .formDatas(ObjectVpnSslWebPortalLandingpageFormDataArgs.builder()
            .name("string")
            .value("string")
            .build())
        .logoutUrl("string")
        .objectVpnSslWebPortalLandingpageId("string")
        .scopetype("string")
        .sso("string")
        .ssoCredential("string")
        .ssoPasswords("string")
        .ssoUsername("string")
        .url("string")
        .build());
    
    object_vpn_ssl_web_portal_landingpage_resource = fortimanager.ObjectVpnSslWebPortalLandingpage("objectVpnSslWebPortalLandingpageResource",
        portal="string",
        adom="string",
        dynamic_sort_subtable="string",
        form_datas=[{
            "name": "string",
            "value": "string",
        }],
        logout_url="string",
        object_vpn_ssl_web_portal_landingpage_id="string",
        scopetype="string",
        sso="string",
        sso_credential="string",
        sso_passwords=["string"],
        sso_username="string",
        url="string")
    
    const objectVpnSslWebPortalLandingpageResource = new fortimanager.ObjectVpnSslWebPortalLandingpage("objectVpnSslWebPortalLandingpageResource", {
        portal: "string",
        adom: "string",
        dynamicSortSubtable: "string",
        formDatas: [{
            name: "string",
            value: "string",
        }],
        logoutUrl: "string",
        objectVpnSslWebPortalLandingpageId: "string",
        scopetype: "string",
        sso: "string",
        ssoCredential: "string",
        ssoPasswords: ["string"],
        ssoUsername: "string",
        url: "string",
    });
    
    type: fortimanager:ObjectVpnSslWebPortalLandingpage
    properties:
        adom: string
        dynamicSortSubtable: string
        formDatas:
            - name: string
              value: string
        logoutUrl: string
        objectVpnSslWebPortalLandingpageId: string
        portal: string
        scopetype: string
        sso: string
        ssoCredential: string
        ssoPasswords:
            - string
        ssoUsername: string
        url: string
    

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

    Portal string
    Portal.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    FormDatas List<ObjectVpnSslWebPortalLandingpageFormData>
    Form-Data. The structure of form_data block is documented below.
    LogoutUrl string
    Landing page log out URL.
    ObjectVpnSslWebPortalLandingpageId string
    an identifier for the resource.
    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.
    Sso string
    Single sign-on. Valid values: disable, static, auto.
    SsoCredential string
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    SsoPasswords List<string>
    SSO password.
    SsoUsername string
    SSO user name.
    Url string
    Landing page URL.
    Portal string
    Portal.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    FormDatas []ObjectVpnSslWebPortalLandingpageFormDataTypeArgs
    Form-Data. The structure of form_data block is documented below.
    LogoutUrl string
    Landing page log out URL.
    ObjectVpnSslWebPortalLandingpageId string
    an identifier for the resource.
    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.
    Sso string
    Single sign-on. Valid values: disable, static, auto.
    SsoCredential string
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    SsoPasswords []string
    SSO password.
    SsoUsername string
    SSO user name.
    Url string
    Landing page URL.
    portal String
    Portal.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    formDatas List<ObjectVpnSslWebPortalLandingpageFormData>
    Form-Data. The structure of form_data block is documented below.
    logoutUrl String
    Landing page log out URL.
    objectVpnSslWebPortalLandingpageId String
    an identifier for the resource.
    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.
    sso String
    Single sign-on. Valid values: disable, static, auto.
    ssoCredential String
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    ssoPasswords List<String>
    SSO password.
    ssoUsername String
    SSO user name.
    url String
    Landing page URL.
    portal string
    Portal.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    formDatas ObjectVpnSslWebPortalLandingpageFormData[]
    Form-Data. The structure of form_data block is documented below.
    logoutUrl string
    Landing page log out URL.
    objectVpnSslWebPortalLandingpageId string
    an identifier for the resource.
    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.
    sso string
    Single sign-on. Valid values: disable, static, auto.
    ssoCredential string
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    ssoPasswords string[]
    SSO password.
    ssoUsername string
    SSO user name.
    url string
    Landing page URL.
    portal str
    Portal.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    form_datas Sequence[ObjectVpnSslWebPortalLandingpageFormDataArgs]
    Form-Data. The structure of form_data block is documented below.
    logout_url str
    Landing page log out URL.
    object_vpn_ssl_web_portal_landingpage_id str
    an identifier for the resource.
    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.
    sso str
    Single sign-on. Valid values: disable, static, auto.
    sso_credential str
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    sso_passwords Sequence[str]
    SSO password.
    sso_username str
    SSO user name.
    url str
    Landing page URL.
    portal String
    Portal.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    formDatas List<Property Map>
    Form-Data. The structure of form_data block is documented below.
    logoutUrl String
    Landing page log out URL.
    objectVpnSslWebPortalLandingpageId String
    an identifier for the resource.
    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.
    sso String
    Single sign-on. Valid values: disable, static, auto.
    ssoCredential String
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    ssoPasswords List<String>
    SSO password.
    ssoUsername String
    SSO user name.
    url String
    Landing page URL.

    Outputs

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

    Get an existing ObjectVpnSslWebPortalLandingpage 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?: ObjectVpnSslWebPortalLandingpageState, opts?: CustomResourceOptions): ObjectVpnSslWebPortalLandingpage
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            form_datas: Optional[Sequence[ObjectVpnSslWebPortalLandingpageFormDataArgs]] = None,
            logout_url: Optional[str] = None,
            object_vpn_ssl_web_portal_landingpage_id: Optional[str] = None,
            portal: Optional[str] = None,
            scopetype: Optional[str] = None,
            sso: Optional[str] = None,
            sso_credential: Optional[str] = None,
            sso_passwords: Optional[Sequence[str]] = None,
            sso_username: Optional[str] = None,
            url: Optional[str] = None) -> ObjectVpnSslWebPortalLandingpage
    func GetObjectVpnSslWebPortalLandingpage(ctx *Context, name string, id IDInput, state *ObjectVpnSslWebPortalLandingpageState, opts ...ResourceOption) (*ObjectVpnSslWebPortalLandingpage, error)
    public static ObjectVpnSslWebPortalLandingpage Get(string name, Input<string> id, ObjectVpnSslWebPortalLandingpageState? state, CustomResourceOptions? opts = null)
    public static ObjectVpnSslWebPortalLandingpage get(String name, Output<String> id, ObjectVpnSslWebPortalLandingpageState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectVpnSslWebPortalLandingpage    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.
    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.
    FormDatas List<ObjectVpnSslWebPortalLandingpageFormData>
    Form-Data. The structure of form_data block is documented below.
    LogoutUrl string
    Landing page log out URL.
    ObjectVpnSslWebPortalLandingpageId string
    an identifier for the resource.
    Portal string
    Portal.
    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.
    Sso string
    Single sign-on. Valid values: disable, static, auto.
    SsoCredential string
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    SsoPasswords List<string>
    SSO password.
    SsoUsername string
    SSO user name.
    Url string
    Landing page URL.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    FormDatas []ObjectVpnSslWebPortalLandingpageFormDataTypeArgs
    Form-Data. The structure of form_data block is documented below.
    LogoutUrl string
    Landing page log out URL.
    ObjectVpnSslWebPortalLandingpageId string
    an identifier for the resource.
    Portal string
    Portal.
    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.
    Sso string
    Single sign-on. Valid values: disable, static, auto.
    SsoCredential string
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    SsoPasswords []string
    SSO password.
    SsoUsername string
    SSO user name.
    Url string
    Landing page URL.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    formDatas List<ObjectVpnSslWebPortalLandingpageFormData>
    Form-Data. The structure of form_data block is documented below.
    logoutUrl String
    Landing page log out URL.
    objectVpnSslWebPortalLandingpageId String
    an identifier for the resource.
    portal String
    Portal.
    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.
    sso String
    Single sign-on. Valid values: disable, static, auto.
    ssoCredential String
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    ssoPasswords List<String>
    SSO password.
    ssoUsername String
    SSO user name.
    url String
    Landing page URL.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    formDatas ObjectVpnSslWebPortalLandingpageFormData[]
    Form-Data. The structure of form_data block is documented below.
    logoutUrl string
    Landing page log out URL.
    objectVpnSslWebPortalLandingpageId string
    an identifier for the resource.
    portal string
    Portal.
    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.
    sso string
    Single sign-on. Valid values: disable, static, auto.
    ssoCredential string
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    ssoPasswords string[]
    SSO password.
    ssoUsername string
    SSO user name.
    url string
    Landing page URL.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    form_datas Sequence[ObjectVpnSslWebPortalLandingpageFormDataArgs]
    Form-Data. The structure of form_data block is documented below.
    logout_url str
    Landing page log out URL.
    object_vpn_ssl_web_portal_landingpage_id str
    an identifier for the resource.
    portal str
    Portal.
    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.
    sso str
    Single sign-on. Valid values: disable, static, auto.
    sso_credential str
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    sso_passwords Sequence[str]
    SSO password.
    sso_username str
    SSO user name.
    url str
    Landing page URL.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    formDatas List<Property Map>
    Form-Data. The structure of form_data block is documented below.
    logoutUrl String
    Landing page log out URL.
    objectVpnSslWebPortalLandingpageId String
    an identifier for the resource.
    portal String
    Portal.
    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.
    sso String
    Single sign-on. Valid values: disable, static, auto.
    ssoCredential String
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    ssoPasswords List<String>
    SSO password.
    ssoUsername String
    SSO user name.
    url String
    Landing page URL.

    Supporting Types

    ObjectVpnSslWebPortalLandingpageFormData, ObjectVpnSslWebPortalLandingpageFormDataArgs

    Name string
    Name.
    Value string
    Value.
    Name string
    Name.
    Value string
    Value.
    name String
    Name.
    value String
    Value.
    name string
    Name.
    value string
    Value.
    name str
    Name.
    value str
    Value.
    name String
    Name.
    value String
    Value.

    Import

    ObjectVpn SslWebPortalLandingPage can be imported using any of these accepted formats:

    Set import_options = [“portal=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectVpnSslWebPortalLandingpage:ObjectVpnSslWebPortalLandingpage labelname ObjectVpnSslWebPortalLandingPage
    

    $ 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