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

fortimanager.ObjectWebfilterContentEntries

Explore with Pulumi AI

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

    Configure banned word entries.

    This resource is a sub resource for variable entries of resource fortimanager.ObjectWebfilterContent. 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 trnameObjectWebfilterContent = new fortimanager.ObjectWebfilterContent("trnameObjectWebfilterContent", {
        comment: "This is a Terraform example",
        fosid: 1,
    });
    const trnameObjectWebfilterContentEntries = new fortimanager.ObjectWebfilterContentEntries("trnameObjectWebfilterContentEntries", {
        patternType: "regexp",
        score: 20,
        status: "enable",
        content: trnameObjectWebfilterContent.fosid,
    }, {
        dependsOn: [trnameObjectWebfilterContent],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_webfilter_content = fortimanager.ObjectWebfilterContent("trnameObjectWebfilterContent",
        comment="This is a Terraform example",
        fosid=1)
    trname_object_webfilter_content_entries = fortimanager.ObjectWebfilterContentEntries("trnameObjectWebfilterContentEntries",
        pattern_type="regexp",
        score=20,
        status="enable",
        content=trname_object_webfilter_content.fosid,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_webfilter_content]))
    
    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 {
    		trnameObjectWebfilterContent, err := fortimanager.NewObjectWebfilterContent(ctx, "trnameObjectWebfilterContent", &fortimanager.ObjectWebfilterContentArgs{
    			Comment: pulumi.String("This is a Terraform example"),
    			Fosid:   pulumi.Float64(1),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWebfilterContentEntries(ctx, "trnameObjectWebfilterContentEntries", &fortimanager.ObjectWebfilterContentEntriesArgs{
    			PatternType: pulumi.String("regexp"),
    			Score:       pulumi.Float64(20),
    			Status:      pulumi.String("enable"),
    			Content:     trnameObjectWebfilterContent.Fosid,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectWebfilterContent,
    		}))
    		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 trnameObjectWebfilterContent = new Fortimanager.ObjectWebfilterContent("trnameObjectWebfilterContent", new()
        {
            Comment = "This is a Terraform example",
            Fosid = 1,
        });
    
        var trnameObjectWebfilterContentEntries = new Fortimanager.ObjectWebfilterContentEntries("trnameObjectWebfilterContentEntries", new()
        {
            PatternType = "regexp",
            Score = 20,
            Status = "enable",
            Content = trnameObjectWebfilterContent.Fosid,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectWebfilterContent,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWebfilterContent;
    import com.pulumi.fortimanager.ObjectWebfilterContentArgs;
    import com.pulumi.fortimanager.ObjectWebfilterContentEntries;
    import com.pulumi.fortimanager.ObjectWebfilterContentEntriesArgs;
    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 trnameObjectWebfilterContent = new ObjectWebfilterContent("trnameObjectWebfilterContent", ObjectWebfilterContentArgs.builder()
                .comment("This is a Terraform example")
                .fosid(1)
                .build());
    
            var trnameObjectWebfilterContentEntries = new ObjectWebfilterContentEntries("trnameObjectWebfilterContentEntries", ObjectWebfilterContentEntriesArgs.builder()
                .patternType("regexp")
                .score(20)
                .status("enable")
                .content(trnameObjectWebfilterContent.fosid())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectWebfilterContent)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectWebfilterContentEntries:
        type: fortimanager:ObjectWebfilterContentEntries
        properties:
          patternType: regexp
          score: 20
          status: enable
          content: ${trnameObjectWebfilterContent.fosid}
        options:
          dependsOn:
            - ${trnameObjectWebfilterContent}
      trnameObjectWebfilterContent:
        type: fortimanager:ObjectWebfilterContent
        properties:
          comment: This is a Terraform example
          fosid: 1
    

    Create ObjectWebfilterContentEntries Resource

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

    Constructor syntax

    new ObjectWebfilterContentEntries(name: string, args: ObjectWebfilterContentEntriesArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWebfilterContentEntries(resource_name: str,
                                      args: ObjectWebfilterContentEntriesArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWebfilterContentEntries(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      content: Optional[str] = None,
                                      action: Optional[str] = None,
                                      adom: Optional[str] = None,
                                      lang: Optional[str] = None,
                                      name: Optional[str] = None,
                                      object_webfilter_content_entries_id: Optional[str] = None,
                                      pattern_type: Optional[str] = None,
                                      scopetype: Optional[str] = None,
                                      score: Optional[float] = None,
                                      status: Optional[str] = None)
    func NewObjectWebfilterContentEntries(ctx *Context, name string, args ObjectWebfilterContentEntriesArgs, opts ...ResourceOption) (*ObjectWebfilterContentEntries, error)
    public ObjectWebfilterContentEntries(string name, ObjectWebfilterContentEntriesArgs args, CustomResourceOptions? opts = null)
    public ObjectWebfilterContentEntries(String name, ObjectWebfilterContentEntriesArgs args)
    public ObjectWebfilterContentEntries(String name, ObjectWebfilterContentEntriesArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWebfilterContentEntries
    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 ObjectWebfilterContentEntriesArgs
    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 ObjectWebfilterContentEntriesArgs
    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 ObjectWebfilterContentEntriesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWebfilterContentEntriesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWebfilterContentEntriesArgs
    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 objectWebfilterContentEntriesResource = new Fortimanager.ObjectWebfilterContentEntries("objectWebfilterContentEntriesResource", new()
    {
        Content = "string",
        Action = "string",
        Adom = "string",
        Lang = "string",
        Name = "string",
        ObjectWebfilterContentEntriesId = "string",
        PatternType = "string",
        Scopetype = "string",
        Score = 0,
        Status = "string",
    });
    
    example, err := fortimanager.NewObjectWebfilterContentEntries(ctx, "objectWebfilterContentEntriesResource", &fortimanager.ObjectWebfilterContentEntriesArgs{
    Content: pulumi.String("string"),
    Action: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Lang: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectWebfilterContentEntriesId: pulumi.String("string"),
    PatternType: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Score: pulumi.Float64(0),
    Status: pulumi.String("string"),
    })
    
    var objectWebfilterContentEntriesResource = new ObjectWebfilterContentEntries("objectWebfilterContentEntriesResource", ObjectWebfilterContentEntriesArgs.builder()
        .content("string")
        .action("string")
        .adom("string")
        .lang("string")
        .name("string")
        .objectWebfilterContentEntriesId("string")
        .patternType("string")
        .scopetype("string")
        .score(0)
        .status("string")
        .build());
    
    object_webfilter_content_entries_resource = fortimanager.ObjectWebfilterContentEntries("objectWebfilterContentEntriesResource",
        content="string",
        action="string",
        adom="string",
        lang="string",
        name="string",
        object_webfilter_content_entries_id="string",
        pattern_type="string",
        scopetype="string",
        score=0,
        status="string")
    
    const objectWebfilterContentEntriesResource = new fortimanager.ObjectWebfilterContentEntries("objectWebfilterContentEntriesResource", {
        content: "string",
        action: "string",
        adom: "string",
        lang: "string",
        name: "string",
        objectWebfilterContentEntriesId: "string",
        patternType: "string",
        scopetype: "string",
        score: 0,
        status: "string",
    });
    
    type: fortimanager:ObjectWebfilterContentEntries
    properties:
        action: string
        adom: string
        content: string
        lang: string
        name: string
        objectWebfilterContentEntriesId: string
        patternType: string
        scopetype: string
        score: 0
        status: string
    

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

    Content string
    Content.
    Action string
    Block or exempt word when a match is found. Valid values: exempt, block.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Lang string
    Language of banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish, cyrillic.
    Name string
    Banned word.
    ObjectWebfilterContentEntriesId string
    an identifier for the resource with format {{name}}.
    PatternType string
    Banned word pattern type: wildcard pattern or Perl regular expression. Valid values: wildcard, regexp.
    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.
    Score double
    Score, to be applied every time the word appears on a web page (0 - 4294967295, default = 10).
    Status string
    Enable/disable banned word. Valid values: disable, enable.
    Content string
    Content.
    Action string
    Block or exempt word when a match is found. Valid values: exempt, block.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Lang string
    Language of banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish, cyrillic.
    Name string
    Banned word.
    ObjectWebfilterContentEntriesId string
    an identifier for the resource with format {{name}}.
    PatternType string
    Banned word pattern type: wildcard pattern or Perl regular expression. Valid values: wildcard, regexp.
    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.
    Score float64
    Score, to be applied every time the word appears on a web page (0 - 4294967295, default = 10).
    Status string
    Enable/disable banned word. Valid values: disable, enable.
    content String
    Content.
    action String
    Block or exempt word when a match is found. Valid values: exempt, block.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    lang String
    Language of banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish, cyrillic.
    name String
    Banned word.
    objectWebfilterContentEntriesId String
    an identifier for the resource with format {{name}}.
    patternType String
    Banned word pattern type: wildcard pattern or Perl regular expression. Valid values: wildcard, regexp.
    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.
    score Double
    Score, to be applied every time the word appears on a web page (0 - 4294967295, default = 10).
    status String
    Enable/disable banned word. Valid values: disable, enable.
    content string
    Content.
    action string
    Block or exempt word when a match is found. Valid values: exempt, block.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    lang string
    Language of banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish, cyrillic.
    name string
    Banned word.
    objectWebfilterContentEntriesId string
    an identifier for the resource with format {{name}}.
    patternType string
    Banned word pattern type: wildcard pattern or Perl regular expression. Valid values: wildcard, regexp.
    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.
    score number
    Score, to be applied every time the word appears on a web page (0 - 4294967295, default = 10).
    status string
    Enable/disable banned word. Valid values: disable, enable.
    content str
    Content.
    action str
    Block or exempt word when a match is found. Valid values: exempt, block.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    lang str
    Language of banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish, cyrillic.
    name str
    Banned word.
    object_webfilter_content_entries_id str
    an identifier for the resource with format {{name}}.
    pattern_type str
    Banned word pattern type: wildcard pattern or Perl regular expression. Valid values: wildcard, regexp.
    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.
    score float
    Score, to be applied every time the word appears on a web page (0 - 4294967295, default = 10).
    status str
    Enable/disable banned word. Valid values: disable, enable.
    content String
    Content.
    action String
    Block or exempt word when a match is found. Valid values: exempt, block.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    lang String
    Language of banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish, cyrillic.
    name String
    Banned word.
    objectWebfilterContentEntriesId String
    an identifier for the resource with format {{name}}.
    patternType String
    Banned word pattern type: wildcard pattern or Perl regular expression. Valid values: wildcard, regexp.
    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.
    score Number
    Score, to be applied every time the word appears on a web page (0 - 4294967295, default = 10).
    status String
    Enable/disable banned word. Valid values: disable, enable.

    Outputs

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

    Get an existing ObjectWebfilterContentEntries 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?: ObjectWebfilterContentEntriesState, opts?: CustomResourceOptions): ObjectWebfilterContentEntries
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            content: Optional[str] = None,
            lang: Optional[str] = None,
            name: Optional[str] = None,
            object_webfilter_content_entries_id: Optional[str] = None,
            pattern_type: Optional[str] = None,
            scopetype: Optional[str] = None,
            score: Optional[float] = None,
            status: Optional[str] = None) -> ObjectWebfilterContentEntries
    func GetObjectWebfilterContentEntries(ctx *Context, name string, id IDInput, state *ObjectWebfilterContentEntriesState, opts ...ResourceOption) (*ObjectWebfilterContentEntries, error)
    public static ObjectWebfilterContentEntries Get(string name, Input<string> id, ObjectWebfilterContentEntriesState? state, CustomResourceOptions? opts = null)
    public static ObjectWebfilterContentEntries get(String name, Output<String> id, ObjectWebfilterContentEntriesState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWebfilterContentEntries    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
    Block or exempt word when a match is found. Valid values: exempt, block.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Content string
    Content.
    Lang string
    Language of banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish, cyrillic.
    Name string
    Banned word.
    ObjectWebfilterContentEntriesId string
    an identifier for the resource with format {{name}}.
    PatternType string
    Banned word pattern type: wildcard pattern or Perl regular expression. Valid values: wildcard, regexp.
    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.
    Score double
    Score, to be applied every time the word appears on a web page (0 - 4294967295, default = 10).
    Status string
    Enable/disable banned word. Valid values: disable, enable.
    Action string
    Block or exempt word when a match is found. Valid values: exempt, block.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Content string
    Content.
    Lang string
    Language of banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish, cyrillic.
    Name string
    Banned word.
    ObjectWebfilterContentEntriesId string
    an identifier for the resource with format {{name}}.
    PatternType string
    Banned word pattern type: wildcard pattern or Perl regular expression. Valid values: wildcard, regexp.
    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.
    Score float64
    Score, to be applied every time the word appears on a web page (0 - 4294967295, default = 10).
    Status string
    Enable/disable banned word. Valid values: disable, enable.
    action String
    Block or exempt word when a match is found. Valid values: exempt, block.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    content String
    Content.
    lang String
    Language of banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish, cyrillic.
    name String
    Banned word.
    objectWebfilterContentEntriesId String
    an identifier for the resource with format {{name}}.
    patternType String
    Banned word pattern type: wildcard pattern or Perl regular expression. Valid values: wildcard, regexp.
    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.
    score Double
    Score, to be applied every time the word appears on a web page (0 - 4294967295, default = 10).
    status String
    Enable/disable banned word. Valid values: disable, enable.
    action string
    Block or exempt word when a match is found. Valid values: exempt, block.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    content string
    Content.
    lang string
    Language of banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish, cyrillic.
    name string
    Banned word.
    objectWebfilterContentEntriesId string
    an identifier for the resource with format {{name}}.
    patternType string
    Banned word pattern type: wildcard pattern or Perl regular expression. Valid values: wildcard, regexp.
    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.
    score number
    Score, to be applied every time the word appears on a web page (0 - 4294967295, default = 10).
    status string
    Enable/disable banned word. Valid values: disable, enable.
    action str
    Block or exempt word when a match is found. Valid values: exempt, block.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    content str
    Content.
    lang str
    Language of banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish, cyrillic.
    name str
    Banned word.
    object_webfilter_content_entries_id str
    an identifier for the resource with format {{name}}.
    pattern_type str
    Banned word pattern type: wildcard pattern or Perl regular expression. Valid values: wildcard, regexp.
    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.
    score float
    Score, to be applied every time the word appears on a web page (0 - 4294967295, default = 10).
    status str
    Enable/disable banned word. Valid values: disable, enable.
    action String
    Block or exempt word when a match is found. Valid values: exempt, block.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    content String
    Content.
    lang String
    Language of banned word. Valid values: western, simch, trach, japanese, korean, french, thai, spanish, cyrillic.
    name String
    Banned word.
    objectWebfilterContentEntriesId String
    an identifier for the resource with format {{name}}.
    patternType String
    Banned word pattern type: wildcard pattern or Perl regular expression. Valid values: wildcard, regexp.
    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.
    score Number
    Score, to be applied every time the word appears on a web page (0 - 4294967295, default = 10).
    status String
    Enable/disable banned word. Valid values: disable, enable.

    Import

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

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWebfilterContentEntries:ObjectWebfilterContentEntries labelname {{name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

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

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

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev