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

fortimanager.ObjectDnsfilterDomainfilterEntries

Explore with Pulumi AI

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

    DNS domain filter entries.

    This resource is a sub resource for variable entries of resource fortimanager.ObjectDnsfilterDomainfilter. 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 trnameObjectDnsfilterDomainfilter = new fortimanager.ObjectDnsfilterDomainfilter("trnameObjectDnsfilterDomainfilter", {
        comment: "This is a Terraform example",
        fosid: 25,
    });
    const trnameObjectDnsfilterDomainfilterEntries = new fortimanager.ObjectDnsfilterDomainfilterEntries("trnameObjectDnsfilterDomainfilterEntries", {
        domainFilter: trnameObjectDnsfilterDomainfilter.fosid,
        action: "monitor",
        domain: "domain",
        fosid: 1,
        status: "disable",
    }, {
        dependsOn: [trnameObjectDnsfilterDomainfilter],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_dnsfilter_domainfilter = fortimanager.ObjectDnsfilterDomainfilter("trnameObjectDnsfilterDomainfilter",
        comment="This is a Terraform example",
        fosid=25)
    trname_object_dnsfilter_domainfilter_entries = fortimanager.ObjectDnsfilterDomainfilterEntries("trnameObjectDnsfilterDomainfilterEntries",
        domain_filter=trname_object_dnsfilter_domainfilter.fosid,
        action="monitor",
        domain="domain",
        fosid=1,
        status="disable",
        opts = pulumi.ResourceOptions(depends_on=[trname_object_dnsfilter_domainfilter]))
    
    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 {
    		trnameObjectDnsfilterDomainfilter, err := fortimanager.NewObjectDnsfilterDomainfilter(ctx, "trnameObjectDnsfilterDomainfilter", &fortimanager.ObjectDnsfilterDomainfilterArgs{
    			Comment: pulumi.String("This is a Terraform example"),
    			Fosid:   pulumi.Float64(25),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectDnsfilterDomainfilterEntries(ctx, "trnameObjectDnsfilterDomainfilterEntries", &fortimanager.ObjectDnsfilterDomainfilterEntriesArgs{
    			DomainFilter: trnameObjectDnsfilterDomainfilter.Fosid,
    			Action:       pulumi.String("monitor"),
    			Domain:       pulumi.String("domain"),
    			Fosid:        pulumi.Float64(1),
    			Status:       pulumi.String("disable"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectDnsfilterDomainfilter,
    		}))
    		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 trnameObjectDnsfilterDomainfilter = new Fortimanager.ObjectDnsfilterDomainfilter("trnameObjectDnsfilterDomainfilter", new()
        {
            Comment = "This is a Terraform example",
            Fosid = 25,
        });
    
        var trnameObjectDnsfilterDomainfilterEntries = new Fortimanager.ObjectDnsfilterDomainfilterEntries("trnameObjectDnsfilterDomainfilterEntries", new()
        {
            DomainFilter = trnameObjectDnsfilterDomainfilter.Fosid,
            Action = "monitor",
            Domain = "domain",
            Fosid = 1,
            Status = "disable",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectDnsfilterDomainfilter,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectDnsfilterDomainfilter;
    import com.pulumi.fortimanager.ObjectDnsfilterDomainfilterArgs;
    import com.pulumi.fortimanager.ObjectDnsfilterDomainfilterEntries;
    import com.pulumi.fortimanager.ObjectDnsfilterDomainfilterEntriesArgs;
    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 trnameObjectDnsfilterDomainfilter = new ObjectDnsfilterDomainfilter("trnameObjectDnsfilterDomainfilter", ObjectDnsfilterDomainfilterArgs.builder()
                .comment("This is a Terraform example")
                .fosid(25)
                .build());
    
            var trnameObjectDnsfilterDomainfilterEntries = new ObjectDnsfilterDomainfilterEntries("trnameObjectDnsfilterDomainfilterEntries", ObjectDnsfilterDomainfilterEntriesArgs.builder()
                .domainFilter(trnameObjectDnsfilterDomainfilter.fosid())
                .action("monitor")
                .domain("domain")
                .fosid(1)
                .status("disable")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectDnsfilterDomainfilter)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectDnsfilterDomainfilterEntries:
        type: fortimanager:ObjectDnsfilterDomainfilterEntries
        properties:
          domainFilter: ${trnameObjectDnsfilterDomainfilter.fosid}
          action: monitor
          domain: domain
          fosid: 1
          status: disable
        options:
          dependsOn:
            - ${trnameObjectDnsfilterDomainfilter}
      trnameObjectDnsfilterDomainfilter:
        type: fortimanager:ObjectDnsfilterDomainfilter
        properties:
          comment: This is a Terraform example
          fosid: 25
    

    Create ObjectDnsfilterDomainfilterEntries Resource

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

    Constructor syntax

    new ObjectDnsfilterDomainfilterEntries(name: string, args: ObjectDnsfilterDomainfilterEntriesArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectDnsfilterDomainfilterEntries(resource_name: str,
                                           args: ObjectDnsfilterDomainfilterEntriesArgs,
                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectDnsfilterDomainfilterEntries(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           domain_filter: Optional[str] = None,
                                           action: Optional[str] = None,
                                           adom: Optional[str] = None,
                                           domain: Optional[str] = None,
                                           fosid: Optional[float] = None,
                                           object_dnsfilter_domainfilter_entries_id: Optional[str] = None,
                                           scopetype: Optional[str] = None,
                                           status: Optional[str] = None,
                                           type: Optional[str] = None)
    func NewObjectDnsfilterDomainfilterEntries(ctx *Context, name string, args ObjectDnsfilterDomainfilterEntriesArgs, opts ...ResourceOption) (*ObjectDnsfilterDomainfilterEntries, error)
    public ObjectDnsfilterDomainfilterEntries(string name, ObjectDnsfilterDomainfilterEntriesArgs args, CustomResourceOptions? opts = null)
    public ObjectDnsfilterDomainfilterEntries(String name, ObjectDnsfilterDomainfilterEntriesArgs args)
    public ObjectDnsfilterDomainfilterEntries(String name, ObjectDnsfilterDomainfilterEntriesArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectDnsfilterDomainfilterEntries
    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 ObjectDnsfilterDomainfilterEntriesArgs
    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 ObjectDnsfilterDomainfilterEntriesArgs
    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 ObjectDnsfilterDomainfilterEntriesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectDnsfilterDomainfilterEntriesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectDnsfilterDomainfilterEntriesArgs
    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 objectDnsfilterDomainfilterEntriesResource = new Fortimanager.ObjectDnsfilterDomainfilterEntries("objectDnsfilterDomainfilterEntriesResource", new()
    {
        DomainFilter = "string",
        Action = "string",
        Adom = "string",
        Domain = "string",
        Fosid = 0,
        ObjectDnsfilterDomainfilterEntriesId = "string",
        Scopetype = "string",
        Status = "string",
        Type = "string",
    });
    
    example, err := fortimanager.NewObjectDnsfilterDomainfilterEntries(ctx, "objectDnsfilterDomainfilterEntriesResource", &fortimanager.ObjectDnsfilterDomainfilterEntriesArgs{
    DomainFilter: pulumi.String("string"),
    Action: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Domain: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    ObjectDnsfilterDomainfilterEntriesId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Status: pulumi.String("string"),
    Type: pulumi.String("string"),
    })
    
    var objectDnsfilterDomainfilterEntriesResource = new ObjectDnsfilterDomainfilterEntries("objectDnsfilterDomainfilterEntriesResource", ObjectDnsfilterDomainfilterEntriesArgs.builder()
        .domainFilter("string")
        .action("string")
        .adom("string")
        .domain("string")
        .fosid(0)
        .objectDnsfilterDomainfilterEntriesId("string")
        .scopetype("string")
        .status("string")
        .type("string")
        .build());
    
    object_dnsfilter_domainfilter_entries_resource = fortimanager.ObjectDnsfilterDomainfilterEntries("objectDnsfilterDomainfilterEntriesResource",
        domain_filter="string",
        action="string",
        adom="string",
        domain="string",
        fosid=0,
        object_dnsfilter_domainfilter_entries_id="string",
        scopetype="string",
        status="string",
        type="string")
    
    const objectDnsfilterDomainfilterEntriesResource = new fortimanager.ObjectDnsfilterDomainfilterEntries("objectDnsfilterDomainfilterEntriesResource", {
        domainFilter: "string",
        action: "string",
        adom: "string",
        domain: "string",
        fosid: 0,
        objectDnsfilterDomainfilterEntriesId: "string",
        scopetype: "string",
        status: "string",
        type: "string",
    });
    
    type: fortimanager:ObjectDnsfilterDomainfilterEntries
    properties:
        action: string
        adom: string
        domain: string
        domainFilter: string
        fosid: 0
        objectDnsfilterDomainfilterEntriesId: string
        scopetype: string
        status: string
        type: string
    

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

    DomainFilter string
    Domain Filter.
    Action string
    Action to take for domain filter matches. Valid values: block, allow, monitor.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Domain string
    Domain entries to be filtered.
    Fosid double
    Id.
    ObjectDnsfilterDomainfilterEntriesId string
    an identifier for the resource with format {{fosid}}.
    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 domain filter. Valid values: disable, enable.
    Type string
    DNS domain filter type. Valid values: simple, regex, wildcard.
    DomainFilter string
    Domain Filter.
    Action string
    Action to take for domain filter matches. Valid values: block, allow, monitor.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Domain string
    Domain entries to be filtered.
    Fosid float64
    Id.
    ObjectDnsfilterDomainfilterEntriesId string
    an identifier for the resource with format {{fosid}}.
    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 domain filter. Valid values: disable, enable.
    Type string
    DNS domain filter type. Valid values: simple, regex, wildcard.
    domainFilter String
    Domain Filter.
    action String
    Action to take for domain filter matches. Valid values: block, allow, monitor.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain String
    Domain entries to be filtered.
    fosid Double
    Id.
    objectDnsfilterDomainfilterEntriesId String
    an identifier for the resource with format {{fosid}}.
    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 domain filter. Valid values: disable, enable.
    type String
    DNS domain filter type. Valid values: simple, regex, wildcard.
    domainFilter string
    Domain Filter.
    action string
    Action to take for domain filter matches. Valid values: block, allow, monitor.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain string
    Domain entries to be filtered.
    fosid number
    Id.
    objectDnsfilterDomainfilterEntriesId string
    an identifier for the resource with format {{fosid}}.
    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 domain filter. Valid values: disable, enable.
    type string
    DNS domain filter type. Valid values: simple, regex, wildcard.
    domain_filter str
    Domain Filter.
    action str
    Action to take for domain filter matches. Valid values: block, allow, monitor.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain str
    Domain entries to be filtered.
    fosid float
    Id.
    object_dnsfilter_domainfilter_entries_id str
    an identifier for the resource with format {{fosid}}.
    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 domain filter. Valid values: disable, enable.
    type str
    DNS domain filter type. Valid values: simple, regex, wildcard.
    domainFilter String
    Domain Filter.
    action String
    Action to take for domain filter matches. Valid values: block, allow, monitor.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain String
    Domain entries to be filtered.
    fosid Number
    Id.
    objectDnsfilterDomainfilterEntriesId String
    an identifier for the resource with format {{fosid}}.
    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 domain filter. Valid values: disable, enable.
    type String
    DNS domain filter type. Valid values: simple, regex, wildcard.

    Outputs

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

    Get an existing ObjectDnsfilterDomainfilterEntries 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?: ObjectDnsfilterDomainfilterEntriesState, opts?: CustomResourceOptions): ObjectDnsfilterDomainfilterEntries
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            domain: Optional[str] = None,
            domain_filter: Optional[str] = None,
            fosid: Optional[float] = None,
            object_dnsfilter_domainfilter_entries_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            status: Optional[str] = None,
            type: Optional[str] = None) -> ObjectDnsfilterDomainfilterEntries
    func GetObjectDnsfilterDomainfilterEntries(ctx *Context, name string, id IDInput, state *ObjectDnsfilterDomainfilterEntriesState, opts ...ResourceOption) (*ObjectDnsfilterDomainfilterEntries, error)
    public static ObjectDnsfilterDomainfilterEntries Get(string name, Input<string> id, ObjectDnsfilterDomainfilterEntriesState? state, CustomResourceOptions? opts = null)
    public static ObjectDnsfilterDomainfilterEntries get(String name, Output<String> id, ObjectDnsfilterDomainfilterEntriesState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectDnsfilterDomainfilterEntries    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 domain filter matches. Valid values: block, allow, monitor.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Domain string
    Domain entries to be filtered.
    DomainFilter string
    Domain Filter.
    Fosid double
    Id.
    ObjectDnsfilterDomainfilterEntriesId string
    an identifier for the resource with format {{fosid}}.
    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 domain filter. Valid values: disable, enable.
    Type string
    DNS domain filter type. Valid values: simple, regex, wildcard.
    Action string
    Action to take for domain filter matches. Valid values: block, allow, monitor.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Domain string
    Domain entries to be filtered.
    DomainFilter string
    Domain Filter.
    Fosid float64
    Id.
    ObjectDnsfilterDomainfilterEntriesId string
    an identifier for the resource with format {{fosid}}.
    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 domain filter. Valid values: disable, enable.
    Type string
    DNS domain filter type. Valid values: simple, regex, wildcard.
    action String
    Action to take for domain filter matches. Valid values: block, allow, monitor.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain String
    Domain entries to be filtered.
    domainFilter String
    Domain Filter.
    fosid Double
    Id.
    objectDnsfilterDomainfilterEntriesId String
    an identifier for the resource with format {{fosid}}.
    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 domain filter. Valid values: disable, enable.
    type String
    DNS domain filter type. Valid values: simple, regex, wildcard.
    action string
    Action to take for domain filter matches. Valid values: block, allow, monitor.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain string
    Domain entries to be filtered.
    domainFilter string
    Domain Filter.
    fosid number
    Id.
    objectDnsfilterDomainfilterEntriesId string
    an identifier for the resource with format {{fosid}}.
    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 domain filter. Valid values: disable, enable.
    type string
    DNS domain filter type. Valid values: simple, regex, wildcard.
    action str
    Action to take for domain filter matches. Valid values: block, allow, monitor.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain str
    Domain entries to be filtered.
    domain_filter str
    Domain Filter.
    fosid float
    Id.
    object_dnsfilter_domainfilter_entries_id str
    an identifier for the resource with format {{fosid}}.
    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 domain filter. Valid values: disable, enable.
    type str
    DNS domain filter type. Valid values: simple, regex, wildcard.
    action String
    Action to take for domain filter matches. Valid values: block, allow, monitor.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain String
    Domain entries to be filtered.
    domainFilter String
    Domain Filter.
    fosid Number
    Id.
    objectDnsfilterDomainfilterEntriesId String
    an identifier for the resource with format {{fosid}}.
    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 domain filter. Valid values: disable, enable.
    type String
    DNS domain filter type. Valid values: simple, regex, wildcard.

    Import

    ObjectDnsfilter DomainFilterEntries can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectDnsfilterDomainfilterEntries:ObjectDnsfilterDomainfilterEntries 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