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

fortimanager.ObjectWebfilterProfileWeb

Explore with Pulumi AI

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

    Web content filtering settings.

    This resource is a sub resource for variable web of resource fortimanager.ObjectWebfilterProfile. 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 trname8 = new fortimanager.ObjectWebfilterProfile("trname8", {});
    const trname = new fortimanager.ObjectWebfilterProfileWeb("trname", {
        safeSearches: ["url"],
        youtubeRestrict: "strict",
        profile: trname8.name,
    }, {
        dependsOn: [trname8],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname8 = fortimanager.ObjectWebfilterProfile("trname8")
    trname = fortimanager.ObjectWebfilterProfileWeb("trname",
        safe_searches=["url"],
        youtube_restrict="strict",
        profile=trname8.name,
        opts = pulumi.ResourceOptions(depends_on=[trname8]))
    
    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 {
    		trname8, err := fortimanager.NewObjectWebfilterProfile(ctx, "trname8", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWebfilterProfileWeb(ctx, "trname", &fortimanager.ObjectWebfilterProfileWebArgs{
    			SafeSearches: pulumi.StringArray{
    				pulumi.String("url"),
    			},
    			YoutubeRestrict: pulumi.String("strict"),
    			Profile:         trname8.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trname8,
    		}))
    		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 trname8 = new Fortimanager.ObjectWebfilterProfile("trname8");
    
        var trname = new Fortimanager.ObjectWebfilterProfileWeb("trname", new()
        {
            SafeSearches = new[]
            {
                "url",
            },
            YoutubeRestrict = "strict",
            Profile = trname8.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trname8,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWebfilterProfile;
    import com.pulumi.fortimanager.ObjectWebfilterProfileWeb;
    import com.pulumi.fortimanager.ObjectWebfilterProfileWebArgs;
    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 trname8 = new ObjectWebfilterProfile("trname8");
    
            var trname = new ObjectWebfilterProfileWeb("trname", ObjectWebfilterProfileWebArgs.builder()
                .safeSearches("url")
                .youtubeRestrict("strict")
                .profile(trname8.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trname8)
                    .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectWebfilterProfileWeb
        properties:
          safeSearches:
            - url
          youtubeRestrict: strict
          profile: ${trname8.name}
        options:
          dependsOn:
            - ${trname8}
      trname8:
        type: fortimanager:ObjectWebfilterProfile
    

    Create ObjectWebfilterProfileWeb Resource

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

    Constructor syntax

    new ObjectWebfilterProfileWeb(name: string, args: ObjectWebfilterProfileWebArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWebfilterProfileWeb(resource_name: str,
                                  args: ObjectWebfilterProfileWebInitArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWebfilterProfileWeb(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  profile: Optional[str] = None,
                                  log_search: Optional[str] = None,
                                  keyword_matches: Optional[Sequence[str]] = None,
                                  blocklist: Optional[str] = None,
                                  bword_table: Optional[str] = None,
                                  object_webfilter_profile_web_id: Optional[str] = None,
                                  content_header_list: Optional[str] = None,
                                  blacklist: Optional[str] = None,
                                  adom: Optional[str] = None,
                                  bword_threshold: Optional[float] = None,
                                  allowlists: Optional[Sequence[str]] = None,
                                  safe_searches: Optional[Sequence[str]] = None,
                                  scopetype: Optional[str] = None,
                                  urlfilter_table: Optional[str] = None,
                                  vimeo_restrict: Optional[str] = None,
                                  whitelists: Optional[Sequence[str]] = None,
                                  youtube_restrict: Optional[str] = None)
    func NewObjectWebfilterProfileWeb(ctx *Context, name string, args ObjectWebfilterProfileWebArgs, opts ...ResourceOption) (*ObjectWebfilterProfileWeb, error)
    public ObjectWebfilterProfileWeb(string name, ObjectWebfilterProfileWebArgs args, CustomResourceOptions? opts = null)
    public ObjectWebfilterProfileWeb(String name, ObjectWebfilterProfileWebArgs args)
    public ObjectWebfilterProfileWeb(String name, ObjectWebfilterProfileWebArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWebfilterProfileWeb
    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 ObjectWebfilterProfileWebArgs
    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 ObjectWebfilterProfileWebInitArgs
    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 ObjectWebfilterProfileWebArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWebfilterProfileWebArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWebfilterProfileWebArgs
    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 objectWebfilterProfileWebResource = new Fortimanager.ObjectWebfilterProfileWeb("objectWebfilterProfileWebResource", new()
    {
        Profile = "string",
        LogSearch = "string",
        KeywordMatches = new[]
        {
            "string",
        },
        Blocklist = "string",
        BwordTable = "string",
        ObjectWebfilterProfileWebId = "string",
        ContentHeaderList = "string",
        Blacklist = "string",
        Adom = "string",
        BwordThreshold = 0,
        Allowlists = new[]
        {
            "string",
        },
        SafeSearches = new[]
        {
            "string",
        },
        Scopetype = "string",
        UrlfilterTable = "string",
        VimeoRestrict = "string",
        Whitelists = new[]
        {
            "string",
        },
        YoutubeRestrict = "string",
    });
    
    example, err := fortimanager.NewObjectWebfilterProfileWeb(ctx, "objectWebfilterProfileWebResource", &fortimanager.ObjectWebfilterProfileWebArgs{
    Profile: pulumi.String("string"),
    LogSearch: pulumi.String("string"),
    KeywordMatches: pulumi.StringArray{
    pulumi.String("string"),
    },
    Blocklist: pulumi.String("string"),
    BwordTable: pulumi.String("string"),
    ObjectWebfilterProfileWebId: pulumi.String("string"),
    ContentHeaderList: pulumi.String("string"),
    Blacklist: pulumi.String("string"),
    Adom: pulumi.String("string"),
    BwordThreshold: pulumi.Float64(0),
    Allowlists: pulumi.StringArray{
    pulumi.String("string"),
    },
    SafeSearches: pulumi.StringArray{
    pulumi.String("string"),
    },
    Scopetype: pulumi.String("string"),
    UrlfilterTable: pulumi.String("string"),
    VimeoRestrict: pulumi.String("string"),
    Whitelists: pulumi.StringArray{
    pulumi.String("string"),
    },
    YoutubeRestrict: pulumi.String("string"),
    })
    
    var objectWebfilterProfileWebResource = new ObjectWebfilterProfileWeb("objectWebfilterProfileWebResource", ObjectWebfilterProfileWebArgs.builder()
        .profile("string")
        .logSearch("string")
        .keywordMatches("string")
        .blocklist("string")
        .bwordTable("string")
        .objectWebfilterProfileWebId("string")
        .contentHeaderList("string")
        .blacklist("string")
        .adom("string")
        .bwordThreshold(0)
        .allowlists("string")
        .safeSearches("string")
        .scopetype("string")
        .urlfilterTable("string")
        .vimeoRestrict("string")
        .whitelists("string")
        .youtubeRestrict("string")
        .build());
    
    object_webfilter_profile_web_resource = fortimanager.ObjectWebfilterProfileWeb("objectWebfilterProfileWebResource",
        profile="string",
        log_search="string",
        keyword_matches=["string"],
        blocklist="string",
        bword_table="string",
        object_webfilter_profile_web_id="string",
        content_header_list="string",
        blacklist="string",
        adom="string",
        bword_threshold=0,
        allowlists=["string"],
        safe_searches=["string"],
        scopetype="string",
        urlfilter_table="string",
        vimeo_restrict="string",
        whitelists=["string"],
        youtube_restrict="string")
    
    const objectWebfilterProfileWebResource = new fortimanager.ObjectWebfilterProfileWeb("objectWebfilterProfileWebResource", {
        profile: "string",
        logSearch: "string",
        keywordMatches: ["string"],
        blocklist: "string",
        bwordTable: "string",
        objectWebfilterProfileWebId: "string",
        contentHeaderList: "string",
        blacklist: "string",
        adom: "string",
        bwordThreshold: 0,
        allowlists: ["string"],
        safeSearches: ["string"],
        scopetype: "string",
        urlfilterTable: "string",
        vimeoRestrict: "string",
        whitelists: ["string"],
        youtubeRestrict: "string",
    });
    
    type: fortimanager:ObjectWebfilterProfileWeb
    properties:
        adom: string
        allowlists:
            - string
        blacklist: string
        blocklist: string
        bwordTable: string
        bwordThreshold: 0
        contentHeaderList: string
        keywordMatches:
            - string
        logSearch: string
        objectWebfilterProfileWebId: string
        profile: string
        safeSearches:
            - string
        scopetype: string
        urlfilterTable: string
        vimeoRestrict: string
        whitelists:
            - string
        youtubeRestrict: string
    

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

    Profile string
    Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Allowlists List<string>
    FortiGuard allowlist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    Blacklist string
    Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values: disable, enable.
    Blocklist string
    Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values: disable, enable.
    BwordTable string
    Banned word table ID.
    BwordThreshold double
    Banned word score threshold.
    ContentHeaderList string
    Content header list.
    KeywordMatches List<string>
    Search keywords to log when match is found.
    LogSearch string
    Enable/disable logging all search phrases. Valid values: disable, enable.
    ObjectWebfilterProfileWebId string
    an identifier for the resource.
    SafeSearches List<string>
    Safe search type. Valid values: google, yahoo, bing, url, header.
    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.
    UrlfilterTable string
    URL filter table ID.
    VimeoRestrict string
    Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
    Whitelists List<string>
    FortiGuard whitelist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    YoutubeRestrict string
    YouTube EDU filter level. Valid values: strict, none, moderate.
    Profile string
    Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Allowlists []string
    FortiGuard allowlist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    Blacklist string
    Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values: disable, enable.
    Blocklist string
    Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values: disable, enable.
    BwordTable string
    Banned word table ID.
    BwordThreshold float64
    Banned word score threshold.
    ContentHeaderList string
    Content header list.
    KeywordMatches []string
    Search keywords to log when match is found.
    LogSearch string
    Enable/disable logging all search phrases. Valid values: disable, enable.
    ObjectWebfilterProfileWebId string
    an identifier for the resource.
    SafeSearches []string
    Safe search type. Valid values: google, yahoo, bing, url, header.
    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.
    UrlfilterTable string
    URL filter table ID.
    VimeoRestrict string
    Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
    Whitelists []string
    FortiGuard whitelist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    YoutubeRestrict string
    YouTube EDU filter level. Valid values: strict, none, moderate.
    profile String
    Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allowlists List<String>
    FortiGuard allowlist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    blacklist String
    Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values: disable, enable.
    blocklist String
    Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values: disable, enable.
    bwordTable String
    Banned word table ID.
    bwordThreshold Double
    Banned word score threshold.
    contentHeaderList String
    Content header list.
    keywordMatches List<String>
    Search keywords to log when match is found.
    logSearch String
    Enable/disable logging all search phrases. Valid values: disable, enable.
    objectWebfilterProfileWebId String
    an identifier for the resource.
    safeSearches List<String>
    Safe search type. Valid values: google, yahoo, bing, url, header.
    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.
    urlfilterTable String
    URL filter table ID.
    vimeoRestrict String
    Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
    whitelists List<String>
    FortiGuard whitelist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    youtubeRestrict String
    YouTube EDU filter level. Valid values: strict, none, moderate.
    profile string
    Profile.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allowlists string[]
    FortiGuard allowlist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    blacklist string
    Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values: disable, enable.
    blocklist string
    Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values: disable, enable.
    bwordTable string
    Banned word table ID.
    bwordThreshold number
    Banned word score threshold.
    contentHeaderList string
    Content header list.
    keywordMatches string[]
    Search keywords to log when match is found.
    logSearch string
    Enable/disable logging all search phrases. Valid values: disable, enable.
    objectWebfilterProfileWebId string
    an identifier for the resource.
    safeSearches string[]
    Safe search type. Valid values: google, yahoo, bing, url, header.
    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.
    urlfilterTable string
    URL filter table ID.
    vimeoRestrict string
    Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
    whitelists string[]
    FortiGuard whitelist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    youtubeRestrict string
    YouTube EDU filter level. Valid values: strict, none, moderate.
    profile str
    Profile.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allowlists Sequence[str]
    FortiGuard allowlist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    blacklist str
    Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values: disable, enable.
    blocklist str
    Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values: disable, enable.
    bword_table str
    Banned word table ID.
    bword_threshold float
    Banned word score threshold.
    content_header_list str
    Content header list.
    keyword_matches Sequence[str]
    Search keywords to log when match is found.
    log_search str
    Enable/disable logging all search phrases. Valid values: disable, enable.
    object_webfilter_profile_web_id str
    an identifier for the resource.
    safe_searches Sequence[str]
    Safe search type. Valid values: google, yahoo, bing, url, header.
    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.
    urlfilter_table str
    URL filter table ID.
    vimeo_restrict str
    Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
    whitelists Sequence[str]
    FortiGuard whitelist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    youtube_restrict str
    YouTube EDU filter level. Valid values: strict, none, moderate.
    profile String
    Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allowlists List<String>
    FortiGuard allowlist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    blacklist String
    Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values: disable, enable.
    blocklist String
    Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values: disable, enable.
    bwordTable String
    Banned word table ID.
    bwordThreshold Number
    Banned word score threshold.
    contentHeaderList String
    Content header list.
    keywordMatches List<String>
    Search keywords to log when match is found.
    logSearch String
    Enable/disable logging all search phrases. Valid values: disable, enable.
    objectWebfilterProfileWebId String
    an identifier for the resource.
    safeSearches List<String>
    Safe search type. Valid values: google, yahoo, bing, url, header.
    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.
    urlfilterTable String
    URL filter table ID.
    vimeoRestrict String
    Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
    whitelists List<String>
    FortiGuard whitelist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    youtubeRestrict String
    YouTube EDU filter level. Valid values: strict, none, moderate.

    Outputs

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

    Get an existing ObjectWebfilterProfileWeb 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?: ObjectWebfilterProfileWebState, opts?: CustomResourceOptions): ObjectWebfilterProfileWeb
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            allowlists: Optional[Sequence[str]] = None,
            blacklist: Optional[str] = None,
            blocklist: Optional[str] = None,
            bword_table: Optional[str] = None,
            bword_threshold: Optional[float] = None,
            content_header_list: Optional[str] = None,
            keyword_matches: Optional[Sequence[str]] = None,
            log_search: Optional[str] = None,
            object_webfilter_profile_web_id: Optional[str] = None,
            profile: Optional[str] = None,
            safe_searches: Optional[Sequence[str]] = None,
            scopetype: Optional[str] = None,
            urlfilter_table: Optional[str] = None,
            vimeo_restrict: Optional[str] = None,
            whitelists: Optional[Sequence[str]] = None,
            youtube_restrict: Optional[str] = None) -> ObjectWebfilterProfileWeb
    func GetObjectWebfilterProfileWeb(ctx *Context, name string, id IDInput, state *ObjectWebfilterProfileWebState, opts ...ResourceOption) (*ObjectWebfilterProfileWeb, error)
    public static ObjectWebfilterProfileWeb Get(string name, Input<string> id, ObjectWebfilterProfileWebState? state, CustomResourceOptions? opts = null)
    public static ObjectWebfilterProfileWeb get(String name, Output<String> id, ObjectWebfilterProfileWebState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWebfilterProfileWeb    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.
    Allowlists List<string>
    FortiGuard allowlist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    Blacklist string
    Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values: disable, enable.
    Blocklist string
    Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values: disable, enable.
    BwordTable string
    Banned word table ID.
    BwordThreshold double
    Banned word score threshold.
    ContentHeaderList string
    Content header list.
    KeywordMatches List<string>
    Search keywords to log when match is found.
    LogSearch string
    Enable/disable logging all search phrases. Valid values: disable, enable.
    ObjectWebfilterProfileWebId string
    an identifier for the resource.
    Profile string
    Profile.
    SafeSearches List<string>
    Safe search type. Valid values: google, yahoo, bing, url, header.
    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.
    UrlfilterTable string
    URL filter table ID.
    VimeoRestrict string
    Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
    Whitelists List<string>
    FortiGuard whitelist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    YoutubeRestrict string
    YouTube EDU filter level. Valid values: strict, none, moderate.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Allowlists []string
    FortiGuard allowlist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    Blacklist string
    Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values: disable, enable.
    Blocklist string
    Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values: disable, enable.
    BwordTable string
    Banned word table ID.
    BwordThreshold float64
    Banned word score threshold.
    ContentHeaderList string
    Content header list.
    KeywordMatches []string
    Search keywords to log when match is found.
    LogSearch string
    Enable/disable logging all search phrases. Valid values: disable, enable.
    ObjectWebfilterProfileWebId string
    an identifier for the resource.
    Profile string
    Profile.
    SafeSearches []string
    Safe search type. Valid values: google, yahoo, bing, url, header.
    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.
    UrlfilterTable string
    URL filter table ID.
    VimeoRestrict string
    Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
    Whitelists []string
    FortiGuard whitelist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    YoutubeRestrict string
    YouTube EDU filter level. Valid values: strict, none, moderate.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allowlists List<String>
    FortiGuard allowlist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    blacklist String
    Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values: disable, enable.
    blocklist String
    Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values: disable, enable.
    bwordTable String
    Banned word table ID.
    bwordThreshold Double
    Banned word score threshold.
    contentHeaderList String
    Content header list.
    keywordMatches List<String>
    Search keywords to log when match is found.
    logSearch String
    Enable/disable logging all search phrases. Valid values: disable, enable.
    objectWebfilterProfileWebId String
    an identifier for the resource.
    profile String
    Profile.
    safeSearches List<String>
    Safe search type. Valid values: google, yahoo, bing, url, header.
    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.
    urlfilterTable String
    URL filter table ID.
    vimeoRestrict String
    Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
    whitelists List<String>
    FortiGuard whitelist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    youtubeRestrict String
    YouTube EDU filter level. Valid values: strict, none, moderate.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allowlists string[]
    FortiGuard allowlist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    blacklist string
    Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values: disable, enable.
    blocklist string
    Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values: disable, enable.
    bwordTable string
    Banned word table ID.
    bwordThreshold number
    Banned word score threshold.
    contentHeaderList string
    Content header list.
    keywordMatches string[]
    Search keywords to log when match is found.
    logSearch string
    Enable/disable logging all search phrases. Valid values: disable, enable.
    objectWebfilterProfileWebId string
    an identifier for the resource.
    profile string
    Profile.
    safeSearches string[]
    Safe search type. Valid values: google, yahoo, bing, url, header.
    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.
    urlfilterTable string
    URL filter table ID.
    vimeoRestrict string
    Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
    whitelists string[]
    FortiGuard whitelist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    youtubeRestrict string
    YouTube EDU filter level. Valid values: strict, none, moderate.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allowlists Sequence[str]
    FortiGuard allowlist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    blacklist str
    Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values: disable, enable.
    blocklist str
    Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values: disable, enable.
    bword_table str
    Banned word table ID.
    bword_threshold float
    Banned word score threshold.
    content_header_list str
    Content header list.
    keyword_matches Sequence[str]
    Search keywords to log when match is found.
    log_search str
    Enable/disable logging all search phrases. Valid values: disable, enable.
    object_webfilter_profile_web_id str
    an identifier for the resource.
    profile str
    Profile.
    safe_searches Sequence[str]
    Safe search type. Valid values: google, yahoo, bing, url, header.
    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.
    urlfilter_table str
    URL filter table ID.
    vimeo_restrict str
    Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
    whitelists Sequence[str]
    FortiGuard whitelist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    youtube_restrict str
    YouTube EDU filter level. Valid values: strict, none, moderate.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allowlists List<String>
    FortiGuard allowlist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    blacklist String
    Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values: disable, enable.
    blocklist String
    Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values: disable, enable.
    bwordTable String
    Banned word table ID.
    bwordThreshold Number
    Banned word score threshold.
    contentHeaderList String
    Content header list.
    keywordMatches List<String>
    Search keywords to log when match is found.
    logSearch String
    Enable/disable logging all search phrases. Valid values: disable, enable.
    objectWebfilterProfileWebId String
    an identifier for the resource.
    profile String
    Profile.
    safeSearches List<String>
    Safe search type. Valid values: google, yahoo, bing, url, header.
    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.
    urlfilterTable String
    URL filter table ID.
    vimeoRestrict String
    Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
    whitelists List<String>
    FortiGuard whitelist settings. Valid values: exempt-av, exempt-webcontent, exempt-activex-java-cookie, exempt-dlp, exempt-rangeblock, extended-log-others.
    youtubeRestrict String
    YouTube EDU filter level. Valid values: strict, none, moderate.

    Import

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

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWebfilterProfileWeb:ObjectWebfilterProfileWeb labelname ObjectWebfilterProfileWeb
    

    $ 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