1. Packages
  2. Fortios
  3. API Docs
  4. filter
  5. filter/web
  6. Fortiguard
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

fortios.filter/web.Fortiguard

Explore with Pulumi AI

fortios logo
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

    Configure FortiGuard Web Filter service.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortios from "@pulumiverse/fortios";
    
    const trname = new fortios.filter.web.Fortiguard("trname", {
        cacheMemPercent: 2,
        cacheMode: "ttl",
        cachePrefixMatch: "enable",
        closePorts: "disable",
        ovrdAuthHttps: "enable",
        ovrdAuthPort: 8008,
        ovrdAuthPortHttp: 8008,
        ovrdAuthPortHttps: 8010,
        ovrdAuthPortHttpsFlow: 8015,
        ovrdAuthPortWarning: 8020,
        warnAuthHttps: "enable",
    });
    
    import pulumi
    import pulumiverse_fortios as fortios
    
    trname = fortios.filter.web.Fortiguard("trname",
        cache_mem_percent=2,
        cache_mode="ttl",
        cache_prefix_match="enable",
        close_ports="disable",
        ovrd_auth_https="enable",
        ovrd_auth_port=8008,
        ovrd_auth_port_http=8008,
        ovrd_auth_port_https=8010,
        ovrd_auth_port_https_flow=8015,
        ovrd_auth_port_warning=8020,
        warn_auth_https="enable")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/filter"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := filter.NewFortiguard(ctx, "trname", &filter.FortiguardArgs{
    			CacheMemPercent:       pulumi.Int(2),
    			CacheMode:             pulumi.String("ttl"),
    			CachePrefixMatch:      pulumi.String("enable"),
    			ClosePorts:            pulumi.String("disable"),
    			OvrdAuthHttps:         pulumi.String("enable"),
    			OvrdAuthPort:          pulumi.Int(8008),
    			OvrdAuthPortHttp:      pulumi.Int(8008),
    			OvrdAuthPortHttps:     pulumi.Int(8010),
    			OvrdAuthPortHttpsFlow: pulumi.Int(8015),
    			OvrdAuthPortWarning:   pulumi.Int(8020),
    			WarnAuthHttps:         pulumi.String("enable"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortios = Pulumiverse.Fortios;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortios.Filter.Web.Fortiguard("trname", new()
        {
            CacheMemPercent = 2,
            CacheMode = "ttl",
            CachePrefixMatch = "enable",
            ClosePorts = "disable",
            OvrdAuthHttps = "enable",
            OvrdAuthPort = 8008,
            OvrdAuthPortHttp = 8008,
            OvrdAuthPortHttps = 8010,
            OvrdAuthPortHttpsFlow = 8015,
            OvrdAuthPortWarning = 8020,
            WarnAuthHttps = "enable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortios.filter.Fortiguard;
    import com.pulumi.fortios.filter.FortiguardArgs;
    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 Fortiguard("trname", FortiguardArgs.builder()
                .cacheMemPercent(2)
                .cacheMode("ttl")
                .cachePrefixMatch("enable")
                .closePorts("disable")
                .ovrdAuthHttps("enable")
                .ovrdAuthPort(8008)
                .ovrdAuthPortHttp(8008)
                .ovrdAuthPortHttps(8010)
                .ovrdAuthPortHttpsFlow(8015)
                .ovrdAuthPortWarning(8020)
                .warnAuthHttps("enable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortios:filter/web:Fortiguard
        properties:
          cacheMemPercent: 2
          cacheMode: ttl
          cachePrefixMatch: enable
          closePorts: disable
          ovrdAuthHttps: enable
          ovrdAuthPort: 8008
          ovrdAuthPortHttp: 8008
          ovrdAuthPortHttps: 8010
          ovrdAuthPortHttpsFlow: 8015
          ovrdAuthPortWarning: 8020
          warnAuthHttps: enable
    

    Create Fortiguard Resource

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

    Constructor syntax

    new Fortiguard(name: string, args?: FortiguardArgs, opts?: CustomResourceOptions);
    @overload
    def Fortiguard(resource_name: str,
                   args: Optional[FortiguardArgs] = None,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Fortiguard(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   cache_mem_percent: Optional[int] = None,
                   cache_mem_permille: Optional[int] = None,
                   cache_mode: Optional[str] = None,
                   cache_prefix_match: Optional[str] = None,
                   close_ports: Optional[str] = None,
                   embed_image: Optional[str] = None,
                   ovrd_auth_https: Optional[str] = None,
                   ovrd_auth_port: Optional[int] = None,
                   ovrd_auth_port_http: Optional[int] = None,
                   ovrd_auth_port_https: Optional[int] = None,
                   ovrd_auth_port_https_flow: Optional[int] = None,
                   ovrd_auth_port_warning: Optional[int] = None,
                   request_packet_size_limit: Optional[int] = None,
                   vdomparam: Optional[str] = None,
                   warn_auth_https: Optional[str] = None)
    func NewFortiguard(ctx *Context, name string, args *FortiguardArgs, opts ...ResourceOption) (*Fortiguard, error)
    public Fortiguard(string name, FortiguardArgs? args = null, CustomResourceOptions? opts = null)
    public Fortiguard(String name, FortiguardArgs args)
    public Fortiguard(String name, FortiguardArgs args, CustomResourceOptions options)
    
    type: fortios:filter/web/fortiguard:Fortiguard
    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 FortiguardArgs
    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 FortiguardArgs
    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 FortiguardArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FortiguardArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FortiguardArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Fortiguard Resource Properties

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

    Inputs

    The Fortiguard resource accepts the following input properties:

    CacheMemPercent int
    Maximum percentage of available memory allocated to caching (1 - 15).
    CacheMemPermille int
    Maximum permille of available memory allocated to caching (1 - 150).
    CacheMode string
    Cache entry expiration mode. Valid values: ttl, db-ver.
    CachePrefixMatch string
    Enable/disable prefix matching in the cache. Valid values: enable, disable.
    ClosePorts string
    Close ports used for HTTP/HTTPS override authentication and disable user overrides. Valid values: enable, disable.
    EmbedImage string
    Enable/disable embedding images into replacement messages (default = enable). Valid values: enable, disable.
    OvrdAuthHttps string
    Enable/disable use of HTTPS for override authentication. Valid values: enable, disable.
    OvrdAuthPort int
    Port to use for FortiGuard Web Filter override authentication.
    OvrdAuthPortHttp int
    Port to use for FortiGuard Web Filter HTTP override authentication
    OvrdAuthPortHttps int
    Port to use for FortiGuard Web Filter HTTPS override authentication in proxy mode.
    OvrdAuthPortHttpsFlow int
    Port to use for FortiGuard Web Filter HTTPS override authentication in flow mode.
    OvrdAuthPortWarning int
    Port to use for FortiGuard Web Filter Warning override authentication.
    RequestPacketSizeLimit int
    Limit size of URL request packets sent to FortiGuard server (0 for default).
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    WarnAuthHttps string
    Enable/disable use of HTTPS for warning and authentication. Valid values: enable, disable.
    CacheMemPercent int
    Maximum percentage of available memory allocated to caching (1 - 15).
    CacheMemPermille int
    Maximum permille of available memory allocated to caching (1 - 150).
    CacheMode string
    Cache entry expiration mode. Valid values: ttl, db-ver.
    CachePrefixMatch string
    Enable/disable prefix matching in the cache. Valid values: enable, disable.
    ClosePorts string
    Close ports used for HTTP/HTTPS override authentication and disable user overrides. Valid values: enable, disable.
    EmbedImage string
    Enable/disable embedding images into replacement messages (default = enable). Valid values: enable, disable.
    OvrdAuthHttps string
    Enable/disable use of HTTPS for override authentication. Valid values: enable, disable.
    OvrdAuthPort int
    Port to use for FortiGuard Web Filter override authentication.
    OvrdAuthPortHttp int
    Port to use for FortiGuard Web Filter HTTP override authentication
    OvrdAuthPortHttps int
    Port to use for FortiGuard Web Filter HTTPS override authentication in proxy mode.
    OvrdAuthPortHttpsFlow int
    Port to use for FortiGuard Web Filter HTTPS override authentication in flow mode.
    OvrdAuthPortWarning int
    Port to use for FortiGuard Web Filter Warning override authentication.
    RequestPacketSizeLimit int
    Limit size of URL request packets sent to FortiGuard server (0 for default).
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    WarnAuthHttps string
    Enable/disable use of HTTPS for warning and authentication. Valid values: enable, disable.
    cacheMemPercent Integer
    Maximum percentage of available memory allocated to caching (1 - 15).
    cacheMemPermille Integer
    Maximum permille of available memory allocated to caching (1 - 150).
    cacheMode String
    Cache entry expiration mode. Valid values: ttl, db-ver.
    cachePrefixMatch String
    Enable/disable prefix matching in the cache. Valid values: enable, disable.
    closePorts String
    Close ports used for HTTP/HTTPS override authentication and disable user overrides. Valid values: enable, disable.
    embedImage String
    Enable/disable embedding images into replacement messages (default = enable). Valid values: enable, disable.
    ovrdAuthHttps String
    Enable/disable use of HTTPS for override authentication. Valid values: enable, disable.
    ovrdAuthPort Integer
    Port to use for FortiGuard Web Filter override authentication.
    ovrdAuthPortHttp Integer
    Port to use for FortiGuard Web Filter HTTP override authentication
    ovrdAuthPortHttps Integer
    Port to use for FortiGuard Web Filter HTTPS override authentication in proxy mode.
    ovrdAuthPortHttpsFlow Integer
    Port to use for FortiGuard Web Filter HTTPS override authentication in flow mode.
    ovrdAuthPortWarning Integer
    Port to use for FortiGuard Web Filter Warning override authentication.
    requestPacketSizeLimit Integer
    Limit size of URL request packets sent to FortiGuard server (0 for default).
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    warnAuthHttps String
    Enable/disable use of HTTPS for warning and authentication. Valid values: enable, disable.
    cacheMemPercent number
    Maximum percentage of available memory allocated to caching (1 - 15).
    cacheMemPermille number
    Maximum permille of available memory allocated to caching (1 - 150).
    cacheMode string
    Cache entry expiration mode. Valid values: ttl, db-ver.
    cachePrefixMatch string
    Enable/disable prefix matching in the cache. Valid values: enable, disable.
    closePorts string
    Close ports used for HTTP/HTTPS override authentication and disable user overrides. Valid values: enable, disable.
    embedImage string
    Enable/disable embedding images into replacement messages (default = enable). Valid values: enable, disable.
    ovrdAuthHttps string
    Enable/disable use of HTTPS for override authentication. Valid values: enable, disable.
    ovrdAuthPort number
    Port to use for FortiGuard Web Filter override authentication.
    ovrdAuthPortHttp number
    Port to use for FortiGuard Web Filter HTTP override authentication
    ovrdAuthPortHttps number
    Port to use for FortiGuard Web Filter HTTPS override authentication in proxy mode.
    ovrdAuthPortHttpsFlow number
    Port to use for FortiGuard Web Filter HTTPS override authentication in flow mode.
    ovrdAuthPortWarning number
    Port to use for FortiGuard Web Filter Warning override authentication.
    requestPacketSizeLimit number
    Limit size of URL request packets sent to FortiGuard server (0 for default).
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    warnAuthHttps string
    Enable/disable use of HTTPS for warning and authentication. Valid values: enable, disable.
    cache_mem_percent int
    Maximum percentage of available memory allocated to caching (1 - 15).
    cache_mem_permille int
    Maximum permille of available memory allocated to caching (1 - 150).
    cache_mode str
    Cache entry expiration mode. Valid values: ttl, db-ver.
    cache_prefix_match str
    Enable/disable prefix matching in the cache. Valid values: enable, disable.
    close_ports str
    Close ports used for HTTP/HTTPS override authentication and disable user overrides. Valid values: enable, disable.
    embed_image str
    Enable/disable embedding images into replacement messages (default = enable). Valid values: enable, disable.
    ovrd_auth_https str
    Enable/disable use of HTTPS for override authentication. Valid values: enable, disable.
    ovrd_auth_port int
    Port to use for FortiGuard Web Filter override authentication.
    ovrd_auth_port_http int
    Port to use for FortiGuard Web Filter HTTP override authentication
    ovrd_auth_port_https int
    Port to use for FortiGuard Web Filter HTTPS override authentication in proxy mode.
    ovrd_auth_port_https_flow int
    Port to use for FortiGuard Web Filter HTTPS override authentication in flow mode.
    ovrd_auth_port_warning int
    Port to use for FortiGuard Web Filter Warning override authentication.
    request_packet_size_limit int
    Limit size of URL request packets sent to FortiGuard server (0 for default).
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    warn_auth_https str
    Enable/disable use of HTTPS for warning and authentication. Valid values: enable, disable.
    cacheMemPercent Number
    Maximum percentage of available memory allocated to caching (1 - 15).
    cacheMemPermille Number
    Maximum permille of available memory allocated to caching (1 - 150).
    cacheMode String
    Cache entry expiration mode. Valid values: ttl, db-ver.
    cachePrefixMatch String
    Enable/disable prefix matching in the cache. Valid values: enable, disable.
    closePorts String
    Close ports used for HTTP/HTTPS override authentication and disable user overrides. Valid values: enable, disable.
    embedImage String
    Enable/disable embedding images into replacement messages (default = enable). Valid values: enable, disable.
    ovrdAuthHttps String
    Enable/disable use of HTTPS for override authentication. Valid values: enable, disable.
    ovrdAuthPort Number
    Port to use for FortiGuard Web Filter override authentication.
    ovrdAuthPortHttp Number
    Port to use for FortiGuard Web Filter HTTP override authentication
    ovrdAuthPortHttps Number
    Port to use for FortiGuard Web Filter HTTPS override authentication in proxy mode.
    ovrdAuthPortHttpsFlow Number
    Port to use for FortiGuard Web Filter HTTPS override authentication in flow mode.
    ovrdAuthPortWarning Number
    Port to use for FortiGuard Web Filter Warning override authentication.
    requestPacketSizeLimit Number
    Limit size of URL request packets sent to FortiGuard server (0 for default).
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    warnAuthHttps String
    Enable/disable use of HTTPS for warning and authentication. Valid values: enable, disable.

    Outputs

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

    Get an existing Fortiguard 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?: FortiguardState, opts?: CustomResourceOptions): Fortiguard
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cache_mem_percent: Optional[int] = None,
            cache_mem_permille: Optional[int] = None,
            cache_mode: Optional[str] = None,
            cache_prefix_match: Optional[str] = None,
            close_ports: Optional[str] = None,
            embed_image: Optional[str] = None,
            ovrd_auth_https: Optional[str] = None,
            ovrd_auth_port: Optional[int] = None,
            ovrd_auth_port_http: Optional[int] = None,
            ovrd_auth_port_https: Optional[int] = None,
            ovrd_auth_port_https_flow: Optional[int] = None,
            ovrd_auth_port_warning: Optional[int] = None,
            request_packet_size_limit: Optional[int] = None,
            vdomparam: Optional[str] = None,
            warn_auth_https: Optional[str] = None) -> Fortiguard
    func GetFortiguard(ctx *Context, name string, id IDInput, state *FortiguardState, opts ...ResourceOption) (*Fortiguard, error)
    public static Fortiguard Get(string name, Input<string> id, FortiguardState? state, CustomResourceOptions? opts = null)
    public static Fortiguard get(String name, Output<String> id, FortiguardState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    CacheMemPercent int
    Maximum percentage of available memory allocated to caching (1 - 15).
    CacheMemPermille int
    Maximum permille of available memory allocated to caching (1 - 150).
    CacheMode string
    Cache entry expiration mode. Valid values: ttl, db-ver.
    CachePrefixMatch string
    Enable/disable prefix matching in the cache. Valid values: enable, disable.
    ClosePorts string
    Close ports used for HTTP/HTTPS override authentication and disable user overrides. Valid values: enable, disable.
    EmbedImage string
    Enable/disable embedding images into replacement messages (default = enable). Valid values: enable, disable.
    OvrdAuthHttps string
    Enable/disable use of HTTPS for override authentication. Valid values: enable, disable.
    OvrdAuthPort int
    Port to use for FortiGuard Web Filter override authentication.
    OvrdAuthPortHttp int
    Port to use for FortiGuard Web Filter HTTP override authentication
    OvrdAuthPortHttps int
    Port to use for FortiGuard Web Filter HTTPS override authentication in proxy mode.
    OvrdAuthPortHttpsFlow int
    Port to use for FortiGuard Web Filter HTTPS override authentication in flow mode.
    OvrdAuthPortWarning int
    Port to use for FortiGuard Web Filter Warning override authentication.
    RequestPacketSizeLimit int
    Limit size of URL request packets sent to FortiGuard server (0 for default).
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    WarnAuthHttps string
    Enable/disable use of HTTPS for warning and authentication. Valid values: enable, disable.
    CacheMemPercent int
    Maximum percentage of available memory allocated to caching (1 - 15).
    CacheMemPermille int
    Maximum permille of available memory allocated to caching (1 - 150).
    CacheMode string
    Cache entry expiration mode. Valid values: ttl, db-ver.
    CachePrefixMatch string
    Enable/disable prefix matching in the cache. Valid values: enable, disable.
    ClosePorts string
    Close ports used for HTTP/HTTPS override authentication and disable user overrides. Valid values: enable, disable.
    EmbedImage string
    Enable/disable embedding images into replacement messages (default = enable). Valid values: enable, disable.
    OvrdAuthHttps string
    Enable/disable use of HTTPS for override authentication. Valid values: enable, disable.
    OvrdAuthPort int
    Port to use for FortiGuard Web Filter override authentication.
    OvrdAuthPortHttp int
    Port to use for FortiGuard Web Filter HTTP override authentication
    OvrdAuthPortHttps int
    Port to use for FortiGuard Web Filter HTTPS override authentication in proxy mode.
    OvrdAuthPortHttpsFlow int
    Port to use for FortiGuard Web Filter HTTPS override authentication in flow mode.
    OvrdAuthPortWarning int
    Port to use for FortiGuard Web Filter Warning override authentication.
    RequestPacketSizeLimit int
    Limit size of URL request packets sent to FortiGuard server (0 for default).
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    WarnAuthHttps string
    Enable/disable use of HTTPS for warning and authentication. Valid values: enable, disable.
    cacheMemPercent Integer
    Maximum percentage of available memory allocated to caching (1 - 15).
    cacheMemPermille Integer
    Maximum permille of available memory allocated to caching (1 - 150).
    cacheMode String
    Cache entry expiration mode. Valid values: ttl, db-ver.
    cachePrefixMatch String
    Enable/disable prefix matching in the cache. Valid values: enable, disable.
    closePorts String
    Close ports used for HTTP/HTTPS override authentication and disable user overrides. Valid values: enable, disable.
    embedImage String
    Enable/disable embedding images into replacement messages (default = enable). Valid values: enable, disable.
    ovrdAuthHttps String
    Enable/disable use of HTTPS for override authentication. Valid values: enable, disable.
    ovrdAuthPort Integer
    Port to use for FortiGuard Web Filter override authentication.
    ovrdAuthPortHttp Integer
    Port to use for FortiGuard Web Filter HTTP override authentication
    ovrdAuthPortHttps Integer
    Port to use for FortiGuard Web Filter HTTPS override authentication in proxy mode.
    ovrdAuthPortHttpsFlow Integer
    Port to use for FortiGuard Web Filter HTTPS override authentication in flow mode.
    ovrdAuthPortWarning Integer
    Port to use for FortiGuard Web Filter Warning override authentication.
    requestPacketSizeLimit Integer
    Limit size of URL request packets sent to FortiGuard server (0 for default).
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    warnAuthHttps String
    Enable/disable use of HTTPS for warning and authentication. Valid values: enable, disable.
    cacheMemPercent number
    Maximum percentage of available memory allocated to caching (1 - 15).
    cacheMemPermille number
    Maximum permille of available memory allocated to caching (1 - 150).
    cacheMode string
    Cache entry expiration mode. Valid values: ttl, db-ver.
    cachePrefixMatch string
    Enable/disable prefix matching in the cache. Valid values: enable, disable.
    closePorts string
    Close ports used for HTTP/HTTPS override authentication and disable user overrides. Valid values: enable, disable.
    embedImage string
    Enable/disable embedding images into replacement messages (default = enable). Valid values: enable, disable.
    ovrdAuthHttps string
    Enable/disable use of HTTPS for override authentication. Valid values: enable, disable.
    ovrdAuthPort number
    Port to use for FortiGuard Web Filter override authentication.
    ovrdAuthPortHttp number
    Port to use for FortiGuard Web Filter HTTP override authentication
    ovrdAuthPortHttps number
    Port to use for FortiGuard Web Filter HTTPS override authentication in proxy mode.
    ovrdAuthPortHttpsFlow number
    Port to use for FortiGuard Web Filter HTTPS override authentication in flow mode.
    ovrdAuthPortWarning number
    Port to use for FortiGuard Web Filter Warning override authentication.
    requestPacketSizeLimit number
    Limit size of URL request packets sent to FortiGuard server (0 for default).
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    warnAuthHttps string
    Enable/disable use of HTTPS for warning and authentication. Valid values: enable, disable.
    cache_mem_percent int
    Maximum percentage of available memory allocated to caching (1 - 15).
    cache_mem_permille int
    Maximum permille of available memory allocated to caching (1 - 150).
    cache_mode str
    Cache entry expiration mode. Valid values: ttl, db-ver.
    cache_prefix_match str
    Enable/disable prefix matching in the cache. Valid values: enable, disable.
    close_ports str
    Close ports used for HTTP/HTTPS override authentication and disable user overrides. Valid values: enable, disable.
    embed_image str
    Enable/disable embedding images into replacement messages (default = enable). Valid values: enable, disable.
    ovrd_auth_https str
    Enable/disable use of HTTPS for override authentication. Valid values: enable, disable.
    ovrd_auth_port int
    Port to use for FortiGuard Web Filter override authentication.
    ovrd_auth_port_http int
    Port to use for FortiGuard Web Filter HTTP override authentication
    ovrd_auth_port_https int
    Port to use for FortiGuard Web Filter HTTPS override authentication in proxy mode.
    ovrd_auth_port_https_flow int
    Port to use for FortiGuard Web Filter HTTPS override authentication in flow mode.
    ovrd_auth_port_warning int
    Port to use for FortiGuard Web Filter Warning override authentication.
    request_packet_size_limit int
    Limit size of URL request packets sent to FortiGuard server (0 for default).
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    warn_auth_https str
    Enable/disable use of HTTPS for warning and authentication. Valid values: enable, disable.
    cacheMemPercent Number
    Maximum percentage of available memory allocated to caching (1 - 15).
    cacheMemPermille Number
    Maximum permille of available memory allocated to caching (1 - 150).
    cacheMode String
    Cache entry expiration mode. Valid values: ttl, db-ver.
    cachePrefixMatch String
    Enable/disable prefix matching in the cache. Valid values: enable, disable.
    closePorts String
    Close ports used for HTTP/HTTPS override authentication and disable user overrides. Valid values: enable, disable.
    embedImage String
    Enable/disable embedding images into replacement messages (default = enable). Valid values: enable, disable.
    ovrdAuthHttps String
    Enable/disable use of HTTPS for override authentication. Valid values: enable, disable.
    ovrdAuthPort Number
    Port to use for FortiGuard Web Filter override authentication.
    ovrdAuthPortHttp Number
    Port to use for FortiGuard Web Filter HTTP override authentication
    ovrdAuthPortHttps Number
    Port to use for FortiGuard Web Filter HTTPS override authentication in proxy mode.
    ovrdAuthPortHttpsFlow Number
    Port to use for FortiGuard Web Filter HTTPS override authentication in flow mode.
    ovrdAuthPortWarning Number
    Port to use for FortiGuard Web Filter Warning override authentication.
    requestPacketSizeLimit Number
    Limit size of URL request packets sent to FortiGuard server (0 for default).
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    warnAuthHttps String
    Enable/disable use of HTTPS for warning and authentication. Valid values: enable, disable.

    Import

    Webfilter Fortiguard can be imported using any of these accepted formats:

    $ pulumi import fortios:filter/web/fortiguard:Fortiguard labelname WebfilterFortiguard
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:filter/web/fortiguard:Fortiguard labelname WebfilterFortiguard
    

    $ unset “FORTIOS_IMPORT_TABLE”

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

    Package Details

    Repository
    fortios pulumiverse/pulumi-fortios
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the fortios Terraform Provider.
    fortios logo
    Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse