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

fortimanager.ObjectWebfilterUrlfilterEntries

Explore with Pulumi AI

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

    URL filter entries.

    This resource is a sub resource for variable entries of resource fortimanager.ObjectWebfilterUrlfilter. Conflict and overwrite may occur if use both of them.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectWebfilterUrlfilter = new fortimanager.ObjectWebfilterUrlfilter("trnameObjectWebfilterUrlfilter", {
        comment: "This is a Terraform example",
        fosid: 1,
        ipAddrBlock: "enable",
        oneArmIpsUrlfilter: "disable",
    });
    const trnameObjectWebfilterUrlfilterEntries = new fortimanager.ObjectWebfilterUrlfilterEntries("trnameObjectWebfilterUrlfilterEntries", {
        fosid: 3,
        url: "www.example.com/path/to/resource?param1=value1&param2=value2",
        urlfilter: trnameObjectWebfilterUrlfilter.fosid,
    }, {
        dependsOn: [trnameObjectWebfilterUrlfilter],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_webfilter_urlfilter = fortimanager.ObjectWebfilterUrlfilter("trnameObjectWebfilterUrlfilter",
        comment="This is a Terraform example",
        fosid=1,
        ip_addr_block="enable",
        one_arm_ips_urlfilter="disable")
    trname_object_webfilter_urlfilter_entries = fortimanager.ObjectWebfilterUrlfilterEntries("trnameObjectWebfilterUrlfilterEntries",
        fosid=3,
        url="www.example.com/path/to/resource?param1=value1&param2=value2",
        urlfilter=trname_object_webfilter_urlfilter.fosid,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_webfilter_urlfilter]))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		trnameObjectWebfilterUrlfilter, err := fortimanager.NewObjectWebfilterUrlfilter(ctx, "trnameObjectWebfilterUrlfilter", &fortimanager.ObjectWebfilterUrlfilterArgs{
    			Comment:            pulumi.String("This is a Terraform example"),
    			Fosid:              pulumi.Float64(1),
    			IpAddrBlock:        pulumi.String("enable"),
    			OneArmIpsUrlfilter: pulumi.String("disable"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWebfilterUrlfilterEntries(ctx, "trnameObjectWebfilterUrlfilterEntries", &fortimanager.ObjectWebfilterUrlfilterEntriesArgs{
    			Fosid:     pulumi.Float64(3),
    			Url:       pulumi.String("www.example.com/path/to/resource?param1=value1&param2=value2"),
    			Urlfilter: trnameObjectWebfilterUrlfilter.Fosid,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectWebfilterUrlfilter,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trnameObjectWebfilterUrlfilter = new Fortimanager.ObjectWebfilterUrlfilter("trnameObjectWebfilterUrlfilter", new()
        {
            Comment = "This is a Terraform example",
            Fosid = 1,
            IpAddrBlock = "enable",
            OneArmIpsUrlfilter = "disable",
        });
    
        var trnameObjectWebfilterUrlfilterEntries = new Fortimanager.ObjectWebfilterUrlfilterEntries("trnameObjectWebfilterUrlfilterEntries", new()
        {
            Fosid = 3,
            Url = "www.example.com/path/to/resource?param1=value1&param2=value2",
            Urlfilter = trnameObjectWebfilterUrlfilter.Fosid,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectWebfilterUrlfilter,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWebfilterUrlfilter;
    import com.pulumi.fortimanager.ObjectWebfilterUrlfilterArgs;
    import com.pulumi.fortimanager.ObjectWebfilterUrlfilterEntries;
    import com.pulumi.fortimanager.ObjectWebfilterUrlfilterEntriesArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 trnameObjectWebfilterUrlfilter = new ObjectWebfilterUrlfilter("trnameObjectWebfilterUrlfilter", ObjectWebfilterUrlfilterArgs.builder()
                .comment("This is a Terraform example")
                .fosid(1)
                .ipAddrBlock("enable")
                .oneArmIpsUrlfilter("disable")
                .build());
    
            var trnameObjectWebfilterUrlfilterEntries = new ObjectWebfilterUrlfilterEntries("trnameObjectWebfilterUrlfilterEntries", ObjectWebfilterUrlfilterEntriesArgs.builder()
                .fosid(3)
                .url("www.example.com/path/to/resource?param1=value1&param2=value2")
                .urlfilter(trnameObjectWebfilterUrlfilter.fosid())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectWebfilterUrlfilter)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectWebfilterUrlfilterEntries:
        type: fortimanager:ObjectWebfilterUrlfilterEntries
        properties:
          fosid: 3
          url: www.example.com/path/to/resource?param1=value1&param2=value2
          urlfilter: ${trnameObjectWebfilterUrlfilter.fosid}
        options:
          dependsOn:
            - ${trnameObjectWebfilterUrlfilter}
      trnameObjectWebfilterUrlfilter:
        type: fortimanager:ObjectWebfilterUrlfilter
        properties:
          comment: This is a Terraform example
          fosid: 1
          ipAddrBlock: enable
          oneArmIpsUrlfilter: disable
    

    Create ObjectWebfilterUrlfilterEntries Resource

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

    Constructor syntax

    new ObjectWebfilterUrlfilterEntries(name: string, args: ObjectWebfilterUrlfilterEntriesArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWebfilterUrlfilterEntries(resource_name: str,
                                        args: ObjectWebfilterUrlfilterEntriesArgs,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWebfilterUrlfilterEntries(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        urlfilter: Optional[str] = None,
                                        object_webfilter_urlfilter_entries_id: Optional[str] = None,
                                        antiphish_action: Optional[str] = None,
                                        dns_address_family: Optional[str] = None,
                                        exempts: Optional[Sequence[str]] = None,
                                        fosid: Optional[float] = None,
                                        action: Optional[str] = None,
                                        referrer_host: Optional[str] = None,
                                        scopetype: Optional[str] = None,
                                        status: Optional[str] = None,
                                        type: Optional[str] = None,
                                        url: Optional[str] = None,
                                        adom: Optional[str] = None,
                                        web_proxy_profile: Optional[str] = None)
    func NewObjectWebfilterUrlfilterEntries(ctx *Context, name string, args ObjectWebfilterUrlfilterEntriesArgs, opts ...ResourceOption) (*ObjectWebfilterUrlfilterEntries, error)
    public ObjectWebfilterUrlfilterEntries(string name, ObjectWebfilterUrlfilterEntriesArgs args, CustomResourceOptions? opts = null)
    public ObjectWebfilterUrlfilterEntries(String name, ObjectWebfilterUrlfilterEntriesArgs args)
    public ObjectWebfilterUrlfilterEntries(String name, ObjectWebfilterUrlfilterEntriesArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWebfilterUrlfilterEntries
    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 ObjectWebfilterUrlfilterEntriesArgs
    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 ObjectWebfilterUrlfilterEntriesArgs
    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 ObjectWebfilterUrlfilterEntriesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWebfilterUrlfilterEntriesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWebfilterUrlfilterEntriesArgs
    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 objectWebfilterUrlfilterEntriesResource = new Fortimanager.ObjectWebfilterUrlfilterEntries("objectWebfilterUrlfilterEntriesResource", new()
    {
        Urlfilter = "string",
        ObjectWebfilterUrlfilterEntriesId = "string",
        AntiphishAction = "string",
        DnsAddressFamily = "string",
        Exempts = new[]
        {
            "string",
        },
        Fosid = 0,
        Action = "string",
        ReferrerHost = "string",
        Scopetype = "string",
        Status = "string",
        Type = "string",
        Url = "string",
        Adom = "string",
        WebProxyProfile = "string",
    });
    
    example, err := fortimanager.NewObjectWebfilterUrlfilterEntries(ctx, "objectWebfilterUrlfilterEntriesResource", &fortimanager.ObjectWebfilterUrlfilterEntriesArgs{
    Urlfilter: pulumi.String("string"),
    ObjectWebfilterUrlfilterEntriesId: pulumi.String("string"),
    AntiphishAction: pulumi.String("string"),
    DnsAddressFamily: pulumi.String("string"),
    Exempts: pulumi.StringArray{
    pulumi.String("string"),
    },
    Fosid: pulumi.Float64(0),
    Action: pulumi.String("string"),
    ReferrerHost: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Status: pulumi.String("string"),
    Type: pulumi.String("string"),
    Url: pulumi.String("string"),
    Adom: pulumi.String("string"),
    WebProxyProfile: pulumi.String("string"),
    })
    
    var objectWebfilterUrlfilterEntriesResource = new ObjectWebfilterUrlfilterEntries("objectWebfilterUrlfilterEntriesResource", ObjectWebfilterUrlfilterEntriesArgs.builder()
        .urlfilter("string")
        .objectWebfilterUrlfilterEntriesId("string")
        .antiphishAction("string")
        .dnsAddressFamily("string")
        .exempts("string")
        .fosid(0)
        .action("string")
        .referrerHost("string")
        .scopetype("string")
        .status("string")
        .type("string")
        .url("string")
        .adom("string")
        .webProxyProfile("string")
        .build());
    
    object_webfilter_urlfilter_entries_resource = fortimanager.ObjectWebfilterUrlfilterEntries("objectWebfilterUrlfilterEntriesResource",
        urlfilter="string",
        object_webfilter_urlfilter_entries_id="string",
        antiphish_action="string",
        dns_address_family="string",
        exempts=["string"],
        fosid=0,
        action="string",
        referrer_host="string",
        scopetype="string",
        status="string",
        type="string",
        url="string",
        adom="string",
        web_proxy_profile="string")
    
    const objectWebfilterUrlfilterEntriesResource = new fortimanager.ObjectWebfilterUrlfilterEntries("objectWebfilterUrlfilterEntriesResource", {
        urlfilter: "string",
        objectWebfilterUrlfilterEntriesId: "string",
        antiphishAction: "string",
        dnsAddressFamily: "string",
        exempts: ["string"],
        fosid: 0,
        action: "string",
        referrerHost: "string",
        scopetype: "string",
        status: "string",
        type: "string",
        url: "string",
        adom: "string",
        webProxyProfile: "string",
    });
    
    type: fortimanager:ObjectWebfilterUrlfilterEntries
    properties:
        action: string
        adom: string
        antiphishAction: string
        dnsAddressFamily: string
        exempts:
            - string
        fosid: 0
        objectWebfilterUrlfilterEntriesId: string
        referrerHost: string
        scopetype: string
        status: string
        type: string
        url: string
        urlfilter: string
        webProxyProfile: string
    

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

    Urlfilter string
    Urlfilter.
    Action string
    Action to take for URL filter matches. Valid values: exempt, block, allow, monitor, pass.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AntiphishAction string
    Action to take for AntiPhishing matches. Valid values: block, log.
    DnsAddressFamily string
    Resolve IPv4 address, IPv6 address, or both from DNS server. Valid values: ipv4, ipv6, both.
    Exempts List<string>
    If action is set to exempt, select the security profile operations that exempt URLs skip. Separate multiple options with a space. Valid values: av, web-content, activex-java-cookie, dlp, fortiguard, all, filepattern, pass, range-block, antiphish.
    Fosid double
    Id.
    ObjectWebfilterUrlfilterEntriesId string
    an identifier for the resource with format {{fosid}}.
    ReferrerHost string
    Referrer host name.
    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.
    Status string
    Enable/disable this URL filter. Valid values: disable, enable.
    Type string
    Filter type (simple, regex, or wildcard). Valid values: simple, regex, wildcard.
    Url string
    URL to be filtered.
    WebProxyProfile string
    Web proxy profile.
    Urlfilter string
    Urlfilter.
    Action string
    Action to take for URL filter matches. Valid values: exempt, block, allow, monitor, pass.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AntiphishAction string
    Action to take for AntiPhishing matches. Valid values: block, log.
    DnsAddressFamily string
    Resolve IPv4 address, IPv6 address, or both from DNS server. Valid values: ipv4, ipv6, both.
    Exempts []string
    If action is set to exempt, select the security profile operations that exempt URLs skip. Separate multiple options with a space. Valid values: av, web-content, activex-java-cookie, dlp, fortiguard, all, filepattern, pass, range-block, antiphish.
    Fosid float64
    Id.
    ObjectWebfilterUrlfilterEntriesId string
    an identifier for the resource with format {{fosid}}.
    ReferrerHost string
    Referrer host name.
    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.
    Status string
    Enable/disable this URL filter. Valid values: disable, enable.
    Type string
    Filter type (simple, regex, or wildcard). Valid values: simple, regex, wildcard.
    Url string
    URL to be filtered.
    WebProxyProfile string
    Web proxy profile.
    urlfilter String
    Urlfilter.
    action String
    Action to take for URL filter matches. Valid values: exempt, block, allow, monitor, pass.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    antiphishAction String
    Action to take for AntiPhishing matches. Valid values: block, log.
    dnsAddressFamily String
    Resolve IPv4 address, IPv6 address, or both from DNS server. Valid values: ipv4, ipv6, both.
    exempts List<String>
    If action is set to exempt, select the security profile operations that exempt URLs skip. Separate multiple options with a space. Valid values: av, web-content, activex-java-cookie, dlp, fortiguard, all, filepattern, pass, range-block, antiphish.
    fosid Double
    Id.
    objectWebfilterUrlfilterEntriesId String
    an identifier for the resource with format {{fosid}}.
    referrerHost String
    Referrer host name.
    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.
    status String
    Enable/disable this URL filter. Valid values: disable, enable.
    type String
    Filter type (simple, regex, or wildcard). Valid values: simple, regex, wildcard.
    url String
    URL to be filtered.
    webProxyProfile String
    Web proxy profile.
    urlfilter string
    Urlfilter.
    action string
    Action to take for URL filter matches. Valid values: exempt, block, allow, monitor, pass.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    antiphishAction string
    Action to take for AntiPhishing matches. Valid values: block, log.
    dnsAddressFamily string
    Resolve IPv4 address, IPv6 address, or both from DNS server. Valid values: ipv4, ipv6, both.
    exempts string[]
    If action is set to exempt, select the security profile operations that exempt URLs skip. Separate multiple options with a space. Valid values: av, web-content, activex-java-cookie, dlp, fortiguard, all, filepattern, pass, range-block, antiphish.
    fosid number
    Id.
    objectWebfilterUrlfilterEntriesId string
    an identifier for the resource with format {{fosid}}.
    referrerHost string
    Referrer host name.
    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.
    status string
    Enable/disable this URL filter. Valid values: disable, enable.
    type string
    Filter type (simple, regex, or wildcard). Valid values: simple, regex, wildcard.
    url string
    URL to be filtered.
    webProxyProfile string
    Web proxy profile.
    urlfilter str
    Urlfilter.
    action str
    Action to take for URL filter matches. Valid values: exempt, block, allow, monitor, pass.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    antiphish_action str
    Action to take for AntiPhishing matches. Valid values: block, log.
    dns_address_family str
    Resolve IPv4 address, IPv6 address, or both from DNS server. Valid values: ipv4, ipv6, both.
    exempts Sequence[str]
    If action is set to exempt, select the security profile operations that exempt URLs skip. Separate multiple options with a space. Valid values: av, web-content, activex-java-cookie, dlp, fortiguard, all, filepattern, pass, range-block, antiphish.
    fosid float
    Id.
    object_webfilter_urlfilter_entries_id str
    an identifier for the resource with format {{fosid}}.
    referrer_host str
    Referrer host name.
    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.
    status str
    Enable/disable this URL filter. Valid values: disable, enable.
    type str
    Filter type (simple, regex, or wildcard). Valid values: simple, regex, wildcard.
    url str
    URL to be filtered.
    web_proxy_profile str
    Web proxy profile.
    urlfilter String
    Urlfilter.
    action String
    Action to take for URL filter matches. Valid values: exempt, block, allow, monitor, pass.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    antiphishAction String
    Action to take for AntiPhishing matches. Valid values: block, log.
    dnsAddressFamily String
    Resolve IPv4 address, IPv6 address, or both from DNS server. Valid values: ipv4, ipv6, both.
    exempts List<String>
    If action is set to exempt, select the security profile operations that exempt URLs skip. Separate multiple options with a space. Valid values: av, web-content, activex-java-cookie, dlp, fortiguard, all, filepattern, pass, range-block, antiphish.
    fosid Number
    Id.
    objectWebfilterUrlfilterEntriesId String
    an identifier for the resource with format {{fosid}}.
    referrerHost String
    Referrer host name.
    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.
    status String
    Enable/disable this URL filter. Valid values: disable, enable.
    type String
    Filter type (simple, regex, or wildcard). Valid values: simple, regex, wildcard.
    url String
    URL to be filtered.
    webProxyProfile String
    Web proxy profile.

    Outputs

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

    Get an existing ObjectWebfilterUrlfilterEntries 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?: ObjectWebfilterUrlfilterEntriesState, opts?: CustomResourceOptions): ObjectWebfilterUrlfilterEntries
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            antiphish_action: Optional[str] = None,
            dns_address_family: Optional[str] = None,
            exempts: Optional[Sequence[str]] = None,
            fosid: Optional[float] = None,
            object_webfilter_urlfilter_entries_id: Optional[str] = None,
            referrer_host: Optional[str] = None,
            scopetype: Optional[str] = None,
            status: Optional[str] = None,
            type: Optional[str] = None,
            url: Optional[str] = None,
            urlfilter: Optional[str] = None,
            web_proxy_profile: Optional[str] = None) -> ObjectWebfilterUrlfilterEntries
    func GetObjectWebfilterUrlfilterEntries(ctx *Context, name string, id IDInput, state *ObjectWebfilterUrlfilterEntriesState, opts ...ResourceOption) (*ObjectWebfilterUrlfilterEntries, error)
    public static ObjectWebfilterUrlfilterEntries Get(string name, Input<string> id, ObjectWebfilterUrlfilterEntriesState? state, CustomResourceOptions? opts = null)
    public static ObjectWebfilterUrlfilterEntries get(String name, Output<String> id, ObjectWebfilterUrlfilterEntriesState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWebfilterUrlfilterEntries    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:
    Action string
    Action to take for URL filter matches. Valid values: exempt, block, allow, monitor, pass.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AntiphishAction string
    Action to take for AntiPhishing matches. Valid values: block, log.
    DnsAddressFamily string
    Resolve IPv4 address, IPv6 address, or both from DNS server. Valid values: ipv4, ipv6, both.
    Exempts List<string>
    If action is set to exempt, select the security profile operations that exempt URLs skip. Separate multiple options with a space. Valid values: av, web-content, activex-java-cookie, dlp, fortiguard, all, filepattern, pass, range-block, antiphish.
    Fosid double
    Id.
    ObjectWebfilterUrlfilterEntriesId string
    an identifier for the resource with format {{fosid}}.
    ReferrerHost string
    Referrer host name.
    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.
    Status string
    Enable/disable this URL filter. Valid values: disable, enable.
    Type string
    Filter type (simple, regex, or wildcard). Valid values: simple, regex, wildcard.
    Url string
    URL to be filtered.
    Urlfilter string
    Urlfilter.
    WebProxyProfile string
    Web proxy profile.
    Action string
    Action to take for URL filter matches. Valid values: exempt, block, allow, monitor, pass.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AntiphishAction string
    Action to take for AntiPhishing matches. Valid values: block, log.
    DnsAddressFamily string
    Resolve IPv4 address, IPv6 address, or both from DNS server. Valid values: ipv4, ipv6, both.
    Exempts []string
    If action is set to exempt, select the security profile operations that exempt URLs skip. Separate multiple options with a space. Valid values: av, web-content, activex-java-cookie, dlp, fortiguard, all, filepattern, pass, range-block, antiphish.
    Fosid float64
    Id.
    ObjectWebfilterUrlfilterEntriesId string
    an identifier for the resource with format {{fosid}}.
    ReferrerHost string
    Referrer host name.
    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.
    Status string
    Enable/disable this URL filter. Valid values: disable, enable.
    Type string
    Filter type (simple, regex, or wildcard). Valid values: simple, regex, wildcard.
    Url string
    URL to be filtered.
    Urlfilter string
    Urlfilter.
    WebProxyProfile string
    Web proxy profile.
    action String
    Action to take for URL filter matches. Valid values: exempt, block, allow, monitor, pass.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    antiphishAction String
    Action to take for AntiPhishing matches. Valid values: block, log.
    dnsAddressFamily String
    Resolve IPv4 address, IPv6 address, or both from DNS server. Valid values: ipv4, ipv6, both.
    exempts List<String>
    If action is set to exempt, select the security profile operations that exempt URLs skip. Separate multiple options with a space. Valid values: av, web-content, activex-java-cookie, dlp, fortiguard, all, filepattern, pass, range-block, antiphish.
    fosid Double
    Id.
    objectWebfilterUrlfilterEntriesId String
    an identifier for the resource with format {{fosid}}.
    referrerHost String
    Referrer host name.
    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.
    status String
    Enable/disable this URL filter. Valid values: disable, enable.
    type String
    Filter type (simple, regex, or wildcard). Valid values: simple, regex, wildcard.
    url String
    URL to be filtered.
    urlfilter String
    Urlfilter.
    webProxyProfile String
    Web proxy profile.
    action string
    Action to take for URL filter matches. Valid values: exempt, block, allow, monitor, pass.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    antiphishAction string
    Action to take for AntiPhishing matches. Valid values: block, log.
    dnsAddressFamily string
    Resolve IPv4 address, IPv6 address, or both from DNS server. Valid values: ipv4, ipv6, both.
    exempts string[]
    If action is set to exempt, select the security profile operations that exempt URLs skip. Separate multiple options with a space. Valid values: av, web-content, activex-java-cookie, dlp, fortiguard, all, filepattern, pass, range-block, antiphish.
    fosid number
    Id.
    objectWebfilterUrlfilterEntriesId string
    an identifier for the resource with format {{fosid}}.
    referrerHost string
    Referrer host name.
    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.
    status string
    Enable/disable this URL filter. Valid values: disable, enable.
    type string
    Filter type (simple, regex, or wildcard). Valid values: simple, regex, wildcard.
    url string
    URL to be filtered.
    urlfilter string
    Urlfilter.
    webProxyProfile string
    Web proxy profile.
    action str
    Action to take for URL filter matches. Valid values: exempt, block, allow, monitor, pass.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    antiphish_action str
    Action to take for AntiPhishing matches. Valid values: block, log.
    dns_address_family str
    Resolve IPv4 address, IPv6 address, or both from DNS server. Valid values: ipv4, ipv6, both.
    exempts Sequence[str]
    If action is set to exempt, select the security profile operations that exempt URLs skip. Separate multiple options with a space. Valid values: av, web-content, activex-java-cookie, dlp, fortiguard, all, filepattern, pass, range-block, antiphish.
    fosid float
    Id.
    object_webfilter_urlfilter_entries_id str
    an identifier for the resource with format {{fosid}}.
    referrer_host str
    Referrer host name.
    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.
    status str
    Enable/disable this URL filter. Valid values: disable, enable.
    type str
    Filter type (simple, regex, or wildcard). Valid values: simple, regex, wildcard.
    url str
    URL to be filtered.
    urlfilter str
    Urlfilter.
    web_proxy_profile str
    Web proxy profile.
    action String
    Action to take for URL filter matches. Valid values: exempt, block, allow, monitor, pass.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    antiphishAction String
    Action to take for AntiPhishing matches. Valid values: block, log.
    dnsAddressFamily String
    Resolve IPv4 address, IPv6 address, or both from DNS server. Valid values: ipv4, ipv6, both.
    exempts List<String>
    If action is set to exempt, select the security profile operations that exempt URLs skip. Separate multiple options with a space. Valid values: av, web-content, activex-java-cookie, dlp, fortiguard, all, filepattern, pass, range-block, antiphish.
    fosid Number
    Id.
    objectWebfilterUrlfilterEntriesId String
    an identifier for the resource with format {{fosid}}.
    referrerHost String
    Referrer host name.
    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.
    status String
    Enable/disable this URL filter. Valid values: disable, enable.
    type String
    Filter type (simple, regex, or wildcard). Valid values: simple, regex, wildcard.
    url String
    URL to be filtered.
    urlfilter String
    Urlfilter.
    webProxyProfile String
    Web proxy profile.

    Import

    ObjectWebfilter UrlfilterEntries can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWebfilterUrlfilterEntries:ObjectWebfilterUrlfilterEntries labelname {{fosid}}
    

    $ 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