1. Packages
  2. Fortios
  3. API Docs
  4. firewall
  5. Address
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

fortios.firewall.Address

Explore with Pulumi AI

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

    Configure IPv4 addresses.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortios from "@pulumiverse/fortios";
    
    const trname = new fortios.firewall.Address("trname", {
        allowRouting: "disable",
        associatedInterface: "port2",
        color: 3,
        endIp: "255.255.255.0",
        startIp: "22.1.1.0",
        subnet: "22.1.1.0 255.255.255.0",
        type: "ipmask",
        visibility: "enable",
    });
    
    import pulumi
    import pulumiverse_fortios as fortios
    
    trname = fortios.firewall.Address("trname",
        allow_routing="disable",
        associated_interface="port2",
        color=3,
        end_ip="255.255.255.0",
        start_ip="22.1.1.0",
        subnet="22.1.1.0 255.255.255.0",
        type="ipmask",
        visibility="enable")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/firewall"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := firewall.NewAddress(ctx, "trname", &firewall.AddressArgs{
    			AllowRouting:        pulumi.String("disable"),
    			AssociatedInterface: pulumi.String("port2"),
    			Color:               pulumi.Int(3),
    			EndIp:               pulumi.String("255.255.255.0"),
    			StartIp:             pulumi.String("22.1.1.0"),
    			Subnet:              pulumi.String("22.1.1.0 255.255.255.0"),
    			Type:                pulumi.String("ipmask"),
    			Visibility:          pulumi.String("enable"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortios = Pulumiverse.Fortios;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortios.Firewall.Address("trname", new()
        {
            AllowRouting = "disable",
            AssociatedInterface = "port2",
            Color = 3,
            EndIp = "255.255.255.0",
            StartIp = "22.1.1.0",
            Subnet = "22.1.1.0 255.255.255.0",
            Type = "ipmask",
            Visibility = "enable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortios.firewall.Address;
    import com.pulumi.fortios.firewall.AddressArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var trname = new Address("trname", AddressArgs.builder()
                .allowRouting("disable")
                .associatedInterface("port2")
                .color(3)
                .endIp("255.255.255.0")
                .startIp("22.1.1.0")
                .subnet("22.1.1.0 255.255.255.0")
                .type("ipmask")
                .visibility("enable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortios:firewall:Address
        properties:
          allowRouting: disable
          associatedInterface: port2
          color: 3
          endIp: 255.255.255.0
          startIp: 22.1.1.0
          subnet: 22.1.1.0 255.255.255.0
          type: ipmask
          visibility: enable
    

    Create Address Resource

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

    Constructor syntax

    new Address(name: string, args?: AddressArgs, opts?: CustomResourceOptions);
    @overload
    def Address(resource_name: str,
                args: Optional[AddressArgs] = None,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Address(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                allow_routing: Optional[str] = None,
                associated_interface: Optional[str] = None,
                cache_ttl: Optional[int] = None,
                clearpass_spt: Optional[str] = None,
                color: Optional[int] = None,
                comment: Optional[str] = None,
                country: Optional[str] = None,
                dynamic_sort_subtable: Optional[str] = None,
                end_ip: Optional[str] = None,
                end_mac: Optional[str] = None,
                epg_name: Optional[str] = None,
                fabric_object: Optional[str] = None,
                filter: Optional[str] = None,
                fqdn: Optional[str] = None,
                fsso_groups: Optional[Sequence[AddressFssoGroupArgs]] = None,
                get_all_tables: Optional[str] = None,
                hw_model: Optional[str] = None,
                hw_vendor: Optional[str] = None,
                interface: Optional[str] = None,
                lists: Optional[Sequence[AddressListArgs]] = None,
                macaddrs: Optional[Sequence[AddressMacaddrArgs]] = None,
                name: Optional[str] = None,
                node_ip_only: Optional[str] = None,
                obj_id: Optional[str] = None,
                obj_tag: Optional[str] = None,
                obj_type: Optional[str] = None,
                organization: Optional[str] = None,
                os: Optional[str] = None,
                policy_group: Optional[str] = None,
                route_tag: Optional[int] = None,
                sdn: Optional[str] = None,
                sdn_addr_type: Optional[str] = None,
                sdn_tag: Optional[str] = None,
                start_ip: Optional[str] = None,
                start_mac: Optional[str] = None,
                sub_type: Optional[str] = None,
                subnet: Optional[str] = None,
                subnet_name: Optional[str] = None,
                sw_version: Optional[str] = None,
                tag_detection_level: Optional[str] = None,
                tag_type: Optional[str] = None,
                taggings: Optional[Sequence[AddressTaggingArgs]] = None,
                tenant: Optional[str] = None,
                type: Optional[str] = None,
                uuid: Optional[str] = None,
                vdomparam: Optional[str] = None,
                visibility: Optional[str] = None,
                wildcard: Optional[str] = None,
                wildcard_fqdn: Optional[str] = None)
    func NewAddress(ctx *Context, name string, args *AddressArgs, opts ...ResourceOption) (*Address, error)
    public Address(string name, AddressArgs? args = null, CustomResourceOptions? opts = null)
    public Address(String name, AddressArgs args)
    public Address(String name, AddressArgs args, CustomResourceOptions options)
    
    type: fortios:firewall:Address
    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 AddressArgs
    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 AddressArgs
    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 AddressArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AddressArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AddressArgs
    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 addressResource = new Fortios.Firewall.Address("addressResource", new()
    {
        AllowRouting = "string",
        AssociatedInterface = "string",
        CacheTtl = 0,
        ClearpassSpt = "string",
        Color = 0,
        Comment = "string",
        Country = "string",
        DynamicSortSubtable = "string",
        EndIp = "string",
        EndMac = "string",
        EpgName = "string",
        FabricObject = "string",
        Filter = "string",
        Fqdn = "string",
        FssoGroups = new[]
        {
            new Fortios.Firewall.Inputs.AddressFssoGroupArgs
            {
                Name = "string",
            },
        },
        GetAllTables = "string",
        HwModel = "string",
        HwVendor = "string",
        Interface = "string",
        Lists = new[]
        {
            new Fortios.Firewall.Inputs.AddressListArgs
            {
                Ip = "string",
            },
        },
        Macaddrs = new[]
        {
            new Fortios.Firewall.Inputs.AddressMacaddrArgs
            {
                Macaddr = "string",
            },
        },
        Name = "string",
        NodeIpOnly = "string",
        ObjId = "string",
        ObjTag = "string",
        ObjType = "string",
        Organization = "string",
        Os = "string",
        PolicyGroup = "string",
        RouteTag = 0,
        Sdn = "string",
        SdnAddrType = "string",
        SdnTag = "string",
        StartIp = "string",
        StartMac = "string",
        SubType = "string",
        Subnet = "string",
        SubnetName = "string",
        SwVersion = "string",
        TagDetectionLevel = "string",
        TagType = "string",
        Taggings = new[]
        {
            new Fortios.Firewall.Inputs.AddressTaggingArgs
            {
                Category = "string",
                Name = "string",
                Tags = new[]
                {
                    new Fortios.Firewall.Inputs.AddressTaggingTagArgs
                    {
                        Name = "string",
                    },
                },
            },
        },
        Tenant = "string",
        Type = "string",
        Uuid = "string",
        Vdomparam = "string",
        Visibility = "string",
        Wildcard = "string",
        WildcardFqdn = "string",
    });
    
    example, err := firewall.NewAddress(ctx, "addressResource", &firewall.AddressArgs{
    	AllowRouting:        pulumi.String("string"),
    	AssociatedInterface: pulumi.String("string"),
    	CacheTtl:            pulumi.Int(0),
    	ClearpassSpt:        pulumi.String("string"),
    	Color:               pulumi.Int(0),
    	Comment:             pulumi.String("string"),
    	Country:             pulumi.String("string"),
    	DynamicSortSubtable: pulumi.String("string"),
    	EndIp:               pulumi.String("string"),
    	EndMac:              pulumi.String("string"),
    	EpgName:             pulumi.String("string"),
    	FabricObject:        pulumi.String("string"),
    	Filter:              pulumi.String("string"),
    	Fqdn:                pulumi.String("string"),
    	FssoGroups: firewall.AddressFssoGroupArray{
    		&firewall.AddressFssoGroupArgs{
    			Name: pulumi.String("string"),
    		},
    	},
    	GetAllTables: pulumi.String("string"),
    	HwModel:      pulumi.String("string"),
    	HwVendor:     pulumi.String("string"),
    	Interface:    pulumi.String("string"),
    	Lists: firewall.AddressListArray{
    		&firewall.AddressListArgs{
    			Ip: pulumi.String("string"),
    		},
    	},
    	Macaddrs: firewall.AddressMacaddrArray{
    		&firewall.AddressMacaddrArgs{
    			Macaddr: pulumi.String("string"),
    		},
    	},
    	Name:              pulumi.String("string"),
    	NodeIpOnly:        pulumi.String("string"),
    	ObjId:             pulumi.String("string"),
    	ObjTag:            pulumi.String("string"),
    	ObjType:           pulumi.String("string"),
    	Organization:      pulumi.String("string"),
    	Os:                pulumi.String("string"),
    	PolicyGroup:       pulumi.String("string"),
    	RouteTag:          pulumi.Int(0),
    	Sdn:               pulumi.String("string"),
    	SdnAddrType:       pulumi.String("string"),
    	SdnTag:            pulumi.String("string"),
    	StartIp:           pulumi.String("string"),
    	StartMac:          pulumi.String("string"),
    	SubType:           pulumi.String("string"),
    	Subnet:            pulumi.String("string"),
    	SubnetName:        pulumi.String("string"),
    	SwVersion:         pulumi.String("string"),
    	TagDetectionLevel: pulumi.String("string"),
    	TagType:           pulumi.String("string"),
    	Taggings: firewall.AddressTaggingArray{
    		&firewall.AddressTaggingArgs{
    			Category: pulumi.String("string"),
    			Name:     pulumi.String("string"),
    			Tags: firewall.AddressTaggingTagArray{
    				&firewall.AddressTaggingTagArgs{
    					Name: pulumi.String("string"),
    				},
    			},
    		},
    	},
    	Tenant:       pulumi.String("string"),
    	Type:         pulumi.String("string"),
    	Uuid:         pulumi.String("string"),
    	Vdomparam:    pulumi.String("string"),
    	Visibility:   pulumi.String("string"),
    	Wildcard:     pulumi.String("string"),
    	WildcardFqdn: pulumi.String("string"),
    })
    
    var addressResource = new Address("addressResource", AddressArgs.builder()
        .allowRouting("string")
        .associatedInterface("string")
        .cacheTtl(0)
        .clearpassSpt("string")
        .color(0)
        .comment("string")
        .country("string")
        .dynamicSortSubtable("string")
        .endIp("string")
        .endMac("string")
        .epgName("string")
        .fabricObject("string")
        .filter("string")
        .fqdn("string")
        .fssoGroups(AddressFssoGroupArgs.builder()
            .name("string")
            .build())
        .getAllTables("string")
        .hwModel("string")
        .hwVendor("string")
        .interface_("string")
        .lists(AddressListArgs.builder()
            .ip("string")
            .build())
        .macaddrs(AddressMacaddrArgs.builder()
            .macaddr("string")
            .build())
        .name("string")
        .nodeIpOnly("string")
        .objId("string")
        .objTag("string")
        .objType("string")
        .organization("string")
        .os("string")
        .policyGroup("string")
        .routeTag(0)
        .sdn("string")
        .sdnAddrType("string")
        .sdnTag("string")
        .startIp("string")
        .startMac("string")
        .subType("string")
        .subnet("string")
        .subnetName("string")
        .swVersion("string")
        .tagDetectionLevel("string")
        .tagType("string")
        .taggings(AddressTaggingArgs.builder()
            .category("string")
            .name("string")
            .tags(AddressTaggingTagArgs.builder()
                .name("string")
                .build())
            .build())
        .tenant("string")
        .type("string")
        .uuid("string")
        .vdomparam("string")
        .visibility("string")
        .wildcard("string")
        .wildcardFqdn("string")
        .build());
    
    address_resource = fortios.firewall.Address("addressResource",
        allow_routing="string",
        associated_interface="string",
        cache_ttl=0,
        clearpass_spt="string",
        color=0,
        comment="string",
        country="string",
        dynamic_sort_subtable="string",
        end_ip="string",
        end_mac="string",
        epg_name="string",
        fabric_object="string",
        filter="string",
        fqdn="string",
        fsso_groups=[fortios.firewall.AddressFssoGroupArgs(
            name="string",
        )],
        get_all_tables="string",
        hw_model="string",
        hw_vendor="string",
        interface="string",
        lists=[fortios.firewall.AddressListArgs(
            ip="string",
        )],
        macaddrs=[fortios.firewall.AddressMacaddrArgs(
            macaddr="string",
        )],
        name="string",
        node_ip_only="string",
        obj_id="string",
        obj_tag="string",
        obj_type="string",
        organization="string",
        os="string",
        policy_group="string",
        route_tag=0,
        sdn="string",
        sdn_addr_type="string",
        sdn_tag="string",
        start_ip="string",
        start_mac="string",
        sub_type="string",
        subnet="string",
        subnet_name="string",
        sw_version="string",
        tag_detection_level="string",
        tag_type="string",
        taggings=[fortios.firewall.AddressTaggingArgs(
            category="string",
            name="string",
            tags=[fortios.firewall.AddressTaggingTagArgs(
                name="string",
            )],
        )],
        tenant="string",
        type="string",
        uuid="string",
        vdomparam="string",
        visibility="string",
        wildcard="string",
        wildcard_fqdn="string")
    
    const addressResource = new fortios.firewall.Address("addressResource", {
        allowRouting: "string",
        associatedInterface: "string",
        cacheTtl: 0,
        clearpassSpt: "string",
        color: 0,
        comment: "string",
        country: "string",
        dynamicSortSubtable: "string",
        endIp: "string",
        endMac: "string",
        epgName: "string",
        fabricObject: "string",
        filter: "string",
        fqdn: "string",
        fssoGroups: [{
            name: "string",
        }],
        getAllTables: "string",
        hwModel: "string",
        hwVendor: "string",
        "interface": "string",
        lists: [{
            ip: "string",
        }],
        macaddrs: [{
            macaddr: "string",
        }],
        name: "string",
        nodeIpOnly: "string",
        objId: "string",
        objTag: "string",
        objType: "string",
        organization: "string",
        os: "string",
        policyGroup: "string",
        routeTag: 0,
        sdn: "string",
        sdnAddrType: "string",
        sdnTag: "string",
        startIp: "string",
        startMac: "string",
        subType: "string",
        subnet: "string",
        subnetName: "string",
        swVersion: "string",
        tagDetectionLevel: "string",
        tagType: "string",
        taggings: [{
            category: "string",
            name: "string",
            tags: [{
                name: "string",
            }],
        }],
        tenant: "string",
        type: "string",
        uuid: "string",
        vdomparam: "string",
        visibility: "string",
        wildcard: "string",
        wildcardFqdn: "string",
    });
    
    type: fortios:firewall:Address
    properties:
        allowRouting: string
        associatedInterface: string
        cacheTtl: 0
        clearpassSpt: string
        color: 0
        comment: string
        country: string
        dynamicSortSubtable: string
        endIp: string
        endMac: string
        epgName: string
        fabricObject: string
        filter: string
        fqdn: string
        fssoGroups:
            - name: string
        getAllTables: string
        hwModel: string
        hwVendor: string
        interface: string
        lists:
            - ip: string
        macaddrs:
            - macaddr: string
        name: string
        nodeIpOnly: string
        objId: string
        objTag: string
        objType: string
        organization: string
        os: string
        policyGroup: string
        routeTag: 0
        sdn: string
        sdnAddrType: string
        sdnTag: string
        startIp: string
        startMac: string
        subType: string
        subnet: string
        subnetName: string
        swVersion: string
        tagDetectionLevel: string
        tagType: string
        taggings:
            - category: string
              name: string
              tags:
                - name: string
        tenant: string
        type: string
        uuid: string
        vdomparam: string
        visibility: string
        wildcard: string
        wildcardFqdn: string
    

    Address Resource Properties

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

    Inputs

    The Address resource accepts the following input properties:

    AllowRouting string
    Enable/disable use of this address in the static route configuration. Valid values: enable, disable.
    AssociatedInterface string
    Network interface associated with address.
    CacheTtl int
    Defines the minimal TTL of individual IP addresses in FQDN cache measured in seconds.
    ClearpassSpt string
    SPT (System Posture Token) value. Valid values: unknown, healthy, quarantine, checkup, transient, infected.
    Color int
    Color of icon on the GUI.
    Comment string
    Comment.
    Country string
    IP addresses associated to a specific country.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    EndIp string
    Final IP address (inclusive) in the range for the address.
    EndMac string
    Last MAC address in the range.
    EpgName string
    Endpoint group name.
    FabricObject string
    Security Fabric global object setting. Valid values: enable, disable.
    Filter string
    Match criteria filter.
    Fqdn string
    Fully Qualified Domain Name address.
    FssoGroups List<Pulumiverse.Fortios.Firewall.Inputs.AddressFssoGroup>
    FSSO group(s). The structure of fsso_group block is documented below.
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    HwModel string
    Dynamic address matching hardware model.
    HwVendor string
    Dynamic address matching hardware vendor.
    Interface string
    Name of interface whose IP address is to be used.
    Lists List<Pulumiverse.Fortios.Firewall.Inputs.AddressList>
    IP address list. The structure of list block is documented below.
    Macaddrs List<Pulumiverse.Fortios.Firewall.Inputs.AddressMacaddr>
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    Name string
    Address name.
    NodeIpOnly string
    Enable/disable collection of node addresses only in Kubernetes. Valid values: enable, disable.
    ObjId string
    Object ID for NSX.
    ObjTag string
    Tag of dynamic address object.
    ObjType string
    Object type. Valid values: ip, mac.
    Organization string
    Organization domain name (Syntax: organization/domain).
    Os string
    Dynamic address matching operating system.
    PolicyGroup string
    Policy group name.
    RouteTag int
    route-tag address.
    Sdn string
    SDN.
    SdnAddrType string
    Type of addresses to collect. Valid values: private, public, all.
    SdnTag string
    SDN Tag.
    StartIp string
    First IP address (inclusive) in the range for the address.
    StartMac string
    First MAC address in the range.
    SubType string
    Sub-type of address.
    Subnet string
    IP address and subnet mask of address.
    SubnetName string
    Subnet name.
    SwVersion string
    Dynamic address matching software version.
    TagDetectionLevel string
    Tag detection level of dynamic address object.
    TagType string
    Tag type of dynamic address object.
    Taggings List<Pulumiverse.Fortios.Firewall.Inputs.AddressTagging>
    Config object tagging. The structure of tagging block is documented below.
    Tenant string
    Tenant.
    Type string
    Type of address.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Visibility string
    Enable/disable address visibility in the GUI. Valid values: enable, disable.
    Wildcard string
    IP address and wildcard netmask.
    WildcardFqdn string
    Fully Qualified Domain Name with wildcard characters.
    AllowRouting string
    Enable/disable use of this address in the static route configuration. Valid values: enable, disable.
    AssociatedInterface string
    Network interface associated with address.
    CacheTtl int
    Defines the minimal TTL of individual IP addresses in FQDN cache measured in seconds.
    ClearpassSpt string
    SPT (System Posture Token) value. Valid values: unknown, healthy, quarantine, checkup, transient, infected.
    Color int
    Color of icon on the GUI.
    Comment string
    Comment.
    Country string
    IP addresses associated to a specific country.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    EndIp string
    Final IP address (inclusive) in the range for the address.
    EndMac string
    Last MAC address in the range.
    EpgName string
    Endpoint group name.
    FabricObject string
    Security Fabric global object setting. Valid values: enable, disable.
    Filter string
    Match criteria filter.
    Fqdn string
    Fully Qualified Domain Name address.
    FssoGroups []AddressFssoGroupArgs
    FSSO group(s). The structure of fsso_group block is documented below.
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    HwModel string
    Dynamic address matching hardware model.
    HwVendor string
    Dynamic address matching hardware vendor.
    Interface string
    Name of interface whose IP address is to be used.
    Lists []AddressListArgs
    IP address list. The structure of list block is documented below.
    Macaddrs []AddressMacaddrArgs
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    Name string
    Address name.
    NodeIpOnly string
    Enable/disable collection of node addresses only in Kubernetes. Valid values: enable, disable.
    ObjId string
    Object ID for NSX.
    ObjTag string
    Tag of dynamic address object.
    ObjType string
    Object type. Valid values: ip, mac.
    Organization string
    Organization domain name (Syntax: organization/domain).
    Os string
    Dynamic address matching operating system.
    PolicyGroup string
    Policy group name.
    RouteTag int
    route-tag address.
    Sdn string
    SDN.
    SdnAddrType string
    Type of addresses to collect. Valid values: private, public, all.
    SdnTag string
    SDN Tag.
    StartIp string
    First IP address (inclusive) in the range for the address.
    StartMac string
    First MAC address in the range.
    SubType string
    Sub-type of address.
    Subnet string
    IP address and subnet mask of address.
    SubnetName string
    Subnet name.
    SwVersion string
    Dynamic address matching software version.
    TagDetectionLevel string
    Tag detection level of dynamic address object.
    TagType string
    Tag type of dynamic address object.
    Taggings []AddressTaggingArgs
    Config object tagging. The structure of tagging block is documented below.
    Tenant string
    Tenant.
    Type string
    Type of address.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Visibility string
    Enable/disable address visibility in the GUI. Valid values: enable, disable.
    Wildcard string
    IP address and wildcard netmask.
    WildcardFqdn string
    Fully Qualified Domain Name with wildcard characters.
    allowRouting String
    Enable/disable use of this address in the static route configuration. Valid values: enable, disable.
    associatedInterface String
    Network interface associated with address.
    cacheTtl Integer
    Defines the minimal TTL of individual IP addresses in FQDN cache measured in seconds.
    clearpassSpt String
    SPT (System Posture Token) value. Valid values: unknown, healthy, quarantine, checkup, transient, infected.
    color Integer
    Color of icon on the GUI.
    comment String
    Comment.
    country String
    IP addresses associated to a specific country.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    endIp String
    Final IP address (inclusive) in the range for the address.
    endMac String
    Last MAC address in the range.
    epgName String
    Endpoint group name.
    fabricObject String
    Security Fabric global object setting. Valid values: enable, disable.
    filter String
    Match criteria filter.
    fqdn String
    Fully Qualified Domain Name address.
    fssoGroups List<AddressFssoGroup>
    FSSO group(s). The structure of fsso_group block is documented below.
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    hwModel String
    Dynamic address matching hardware model.
    hwVendor String
    Dynamic address matching hardware vendor.
    interface_ String
    Name of interface whose IP address is to be used.
    lists List<AddressList>
    IP address list. The structure of list block is documented below.
    macaddrs List<AddressMacaddr>
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name String
    Address name.
    nodeIpOnly String
    Enable/disable collection of node addresses only in Kubernetes. Valid values: enable, disable.
    objId String
    Object ID for NSX.
    objTag String
    Tag of dynamic address object.
    objType String
    Object type. Valid values: ip, mac.
    organization String
    Organization domain name (Syntax: organization/domain).
    os String
    Dynamic address matching operating system.
    policyGroup String
    Policy group name.
    routeTag Integer
    route-tag address.
    sdn String
    SDN.
    sdnAddrType String
    Type of addresses to collect. Valid values: private, public, all.
    sdnTag String
    SDN Tag.
    startIp String
    First IP address (inclusive) in the range for the address.
    startMac String
    First MAC address in the range.
    subType String
    Sub-type of address.
    subnet String
    IP address and subnet mask of address.
    subnetName String
    Subnet name.
    swVersion String
    Dynamic address matching software version.
    tagDetectionLevel String
    Tag detection level of dynamic address object.
    tagType String
    Tag type of dynamic address object.
    taggings List<AddressTagging>
    Config object tagging. The structure of tagging block is documented below.
    tenant String
    Tenant.
    type String
    Type of address.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    visibility String
    Enable/disable address visibility in the GUI. Valid values: enable, disable.
    wildcard String
    IP address and wildcard netmask.
    wildcardFqdn String
    Fully Qualified Domain Name with wildcard characters.
    allowRouting string
    Enable/disable use of this address in the static route configuration. Valid values: enable, disable.
    associatedInterface string
    Network interface associated with address.
    cacheTtl number
    Defines the minimal TTL of individual IP addresses in FQDN cache measured in seconds.
    clearpassSpt string
    SPT (System Posture Token) value. Valid values: unknown, healthy, quarantine, checkup, transient, infected.
    color number
    Color of icon on the GUI.
    comment string
    Comment.
    country string
    IP addresses associated to a specific country.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    endIp string
    Final IP address (inclusive) in the range for the address.
    endMac string
    Last MAC address in the range.
    epgName string
    Endpoint group name.
    fabricObject string
    Security Fabric global object setting. Valid values: enable, disable.
    filter string
    Match criteria filter.
    fqdn string
    Fully Qualified Domain Name address.
    fssoGroups AddressFssoGroup[]
    FSSO group(s). The structure of fsso_group block is documented below.
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    hwModel string
    Dynamic address matching hardware model.
    hwVendor string
    Dynamic address matching hardware vendor.
    interface string
    Name of interface whose IP address is to be used.
    lists AddressList[]
    IP address list. The structure of list block is documented below.
    macaddrs AddressMacaddr[]
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name string
    Address name.
    nodeIpOnly string
    Enable/disable collection of node addresses only in Kubernetes. Valid values: enable, disable.
    objId string
    Object ID for NSX.
    objTag string
    Tag of dynamic address object.
    objType string
    Object type. Valid values: ip, mac.
    organization string
    Organization domain name (Syntax: organization/domain).
    os string
    Dynamic address matching operating system.
    policyGroup string
    Policy group name.
    routeTag number
    route-tag address.
    sdn string
    SDN.
    sdnAddrType string
    Type of addresses to collect. Valid values: private, public, all.
    sdnTag string
    SDN Tag.
    startIp string
    First IP address (inclusive) in the range for the address.
    startMac string
    First MAC address in the range.
    subType string
    Sub-type of address.
    subnet string
    IP address and subnet mask of address.
    subnetName string
    Subnet name.
    swVersion string
    Dynamic address matching software version.
    tagDetectionLevel string
    Tag detection level of dynamic address object.
    tagType string
    Tag type of dynamic address object.
    taggings AddressTagging[]
    Config object tagging. The structure of tagging block is documented below.
    tenant string
    Tenant.
    type string
    Type of address.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    visibility string
    Enable/disable address visibility in the GUI. Valid values: enable, disable.
    wildcard string
    IP address and wildcard netmask.
    wildcardFqdn string
    Fully Qualified Domain Name with wildcard characters.
    allow_routing str
    Enable/disable use of this address in the static route configuration. Valid values: enable, disable.
    associated_interface str
    Network interface associated with address.
    cache_ttl int
    Defines the minimal TTL of individual IP addresses in FQDN cache measured in seconds.
    clearpass_spt str
    SPT (System Posture Token) value. Valid values: unknown, healthy, quarantine, checkup, transient, infected.
    color int
    Color of icon on the GUI.
    comment str
    Comment.
    country str
    IP addresses associated to a specific country.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    end_ip str
    Final IP address (inclusive) in the range for the address.
    end_mac str
    Last MAC address in the range.
    epg_name str
    Endpoint group name.
    fabric_object str
    Security Fabric global object setting. Valid values: enable, disable.
    filter str
    Match criteria filter.
    fqdn str
    Fully Qualified Domain Name address.
    fsso_groups Sequence[AddressFssoGroupArgs]
    FSSO group(s). The structure of fsso_group block is documented below.
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    hw_model str
    Dynamic address matching hardware model.
    hw_vendor str
    Dynamic address matching hardware vendor.
    interface str
    Name of interface whose IP address is to be used.
    lists Sequence[AddressListArgs]
    IP address list. The structure of list block is documented below.
    macaddrs Sequence[AddressMacaddrArgs]
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name str
    Address name.
    node_ip_only str
    Enable/disable collection of node addresses only in Kubernetes. Valid values: enable, disable.
    obj_id str
    Object ID for NSX.
    obj_tag str
    Tag of dynamic address object.
    obj_type str
    Object type. Valid values: ip, mac.
    organization str
    Organization domain name (Syntax: organization/domain).
    os str
    Dynamic address matching operating system.
    policy_group str
    Policy group name.
    route_tag int
    route-tag address.
    sdn str
    SDN.
    sdn_addr_type str
    Type of addresses to collect. Valid values: private, public, all.
    sdn_tag str
    SDN Tag.
    start_ip str
    First IP address (inclusive) in the range for the address.
    start_mac str
    First MAC address in the range.
    sub_type str
    Sub-type of address.
    subnet str
    IP address and subnet mask of address.
    subnet_name str
    Subnet name.
    sw_version str
    Dynamic address matching software version.
    tag_detection_level str
    Tag detection level of dynamic address object.
    tag_type str
    Tag type of dynamic address object.
    taggings Sequence[AddressTaggingArgs]
    Config object tagging. The structure of tagging block is documented below.
    tenant str
    Tenant.
    type str
    Type of address.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    visibility str
    Enable/disable address visibility in the GUI. Valid values: enable, disable.
    wildcard str
    IP address and wildcard netmask.
    wildcard_fqdn str
    Fully Qualified Domain Name with wildcard characters.
    allowRouting String
    Enable/disable use of this address in the static route configuration. Valid values: enable, disable.
    associatedInterface String
    Network interface associated with address.
    cacheTtl Number
    Defines the minimal TTL of individual IP addresses in FQDN cache measured in seconds.
    clearpassSpt String
    SPT (System Posture Token) value. Valid values: unknown, healthy, quarantine, checkup, transient, infected.
    color Number
    Color of icon on the GUI.
    comment String
    Comment.
    country String
    IP addresses associated to a specific country.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    endIp String
    Final IP address (inclusive) in the range for the address.
    endMac String
    Last MAC address in the range.
    epgName String
    Endpoint group name.
    fabricObject String
    Security Fabric global object setting. Valid values: enable, disable.
    filter String
    Match criteria filter.
    fqdn String
    Fully Qualified Domain Name address.
    fssoGroups List<Property Map>
    FSSO group(s). The structure of fsso_group block is documented below.
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    hwModel String
    Dynamic address matching hardware model.
    hwVendor String
    Dynamic address matching hardware vendor.
    interface String
    Name of interface whose IP address is to be used.
    lists List<Property Map>
    IP address list. The structure of list block is documented below.
    macaddrs List<Property Map>
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name String
    Address name.
    nodeIpOnly String
    Enable/disable collection of node addresses only in Kubernetes. Valid values: enable, disable.
    objId String
    Object ID for NSX.
    objTag String
    Tag of dynamic address object.
    objType String
    Object type. Valid values: ip, mac.
    organization String
    Organization domain name (Syntax: organization/domain).
    os String
    Dynamic address matching operating system.
    policyGroup String
    Policy group name.
    routeTag Number
    route-tag address.
    sdn String
    SDN.
    sdnAddrType String
    Type of addresses to collect. Valid values: private, public, all.
    sdnTag String
    SDN Tag.
    startIp String
    First IP address (inclusive) in the range for the address.
    startMac String
    First MAC address in the range.
    subType String
    Sub-type of address.
    subnet String
    IP address and subnet mask of address.
    subnetName String
    Subnet name.
    swVersion String
    Dynamic address matching software version.
    tagDetectionLevel String
    Tag detection level of dynamic address object.
    tagType String
    Tag type of dynamic address object.
    taggings List<Property Map>
    Config object tagging. The structure of tagging block is documented below.
    tenant String
    Tenant.
    type String
    Type of address.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    visibility String
    Enable/disable address visibility in the GUI. Valid values: enable, disable.
    wildcard String
    IP address and wildcard netmask.
    wildcardFqdn String
    Fully Qualified Domain Name with wildcard characters.

    Outputs

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

    Get an existing Address 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?: AddressState, opts?: CustomResourceOptions): Address
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allow_routing: Optional[str] = None,
            associated_interface: Optional[str] = None,
            cache_ttl: Optional[int] = None,
            clearpass_spt: Optional[str] = None,
            color: Optional[int] = None,
            comment: Optional[str] = None,
            country: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            end_ip: Optional[str] = None,
            end_mac: Optional[str] = None,
            epg_name: Optional[str] = None,
            fabric_object: Optional[str] = None,
            filter: Optional[str] = None,
            fqdn: Optional[str] = None,
            fsso_groups: Optional[Sequence[AddressFssoGroupArgs]] = None,
            get_all_tables: Optional[str] = None,
            hw_model: Optional[str] = None,
            hw_vendor: Optional[str] = None,
            interface: Optional[str] = None,
            lists: Optional[Sequence[AddressListArgs]] = None,
            macaddrs: Optional[Sequence[AddressMacaddrArgs]] = None,
            name: Optional[str] = None,
            node_ip_only: Optional[str] = None,
            obj_id: Optional[str] = None,
            obj_tag: Optional[str] = None,
            obj_type: Optional[str] = None,
            organization: Optional[str] = None,
            os: Optional[str] = None,
            policy_group: Optional[str] = None,
            route_tag: Optional[int] = None,
            sdn: Optional[str] = None,
            sdn_addr_type: Optional[str] = None,
            sdn_tag: Optional[str] = None,
            start_ip: Optional[str] = None,
            start_mac: Optional[str] = None,
            sub_type: Optional[str] = None,
            subnet: Optional[str] = None,
            subnet_name: Optional[str] = None,
            sw_version: Optional[str] = None,
            tag_detection_level: Optional[str] = None,
            tag_type: Optional[str] = None,
            taggings: Optional[Sequence[AddressTaggingArgs]] = None,
            tenant: Optional[str] = None,
            type: Optional[str] = None,
            uuid: Optional[str] = None,
            vdomparam: Optional[str] = None,
            visibility: Optional[str] = None,
            wildcard: Optional[str] = None,
            wildcard_fqdn: Optional[str] = None) -> Address
    func GetAddress(ctx *Context, name string, id IDInput, state *AddressState, opts ...ResourceOption) (*Address, error)
    public static Address Get(string name, Input<string> id, AddressState? state, CustomResourceOptions? opts = null)
    public static Address get(String name, Output<String> id, AddressState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AllowRouting string
    Enable/disable use of this address in the static route configuration. Valid values: enable, disable.
    AssociatedInterface string
    Network interface associated with address.
    CacheTtl int
    Defines the minimal TTL of individual IP addresses in FQDN cache measured in seconds.
    ClearpassSpt string
    SPT (System Posture Token) value. Valid values: unknown, healthy, quarantine, checkup, transient, infected.
    Color int
    Color of icon on the GUI.
    Comment string
    Comment.
    Country string
    IP addresses associated to a specific country.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    EndIp string
    Final IP address (inclusive) in the range for the address.
    EndMac string
    Last MAC address in the range.
    EpgName string
    Endpoint group name.
    FabricObject string
    Security Fabric global object setting. Valid values: enable, disable.
    Filter string
    Match criteria filter.
    Fqdn string
    Fully Qualified Domain Name address.
    FssoGroups List<Pulumiverse.Fortios.Firewall.Inputs.AddressFssoGroup>
    FSSO group(s). The structure of fsso_group block is documented below.
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    HwModel string
    Dynamic address matching hardware model.
    HwVendor string
    Dynamic address matching hardware vendor.
    Interface string
    Name of interface whose IP address is to be used.
    Lists List<Pulumiverse.Fortios.Firewall.Inputs.AddressList>
    IP address list. The structure of list block is documented below.
    Macaddrs List<Pulumiverse.Fortios.Firewall.Inputs.AddressMacaddr>
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    Name string
    Address name.
    NodeIpOnly string
    Enable/disable collection of node addresses only in Kubernetes. Valid values: enable, disable.
    ObjId string
    Object ID for NSX.
    ObjTag string
    Tag of dynamic address object.
    ObjType string
    Object type. Valid values: ip, mac.
    Organization string
    Organization domain name (Syntax: organization/domain).
    Os string
    Dynamic address matching operating system.
    PolicyGroup string
    Policy group name.
    RouteTag int
    route-tag address.
    Sdn string
    SDN.
    SdnAddrType string
    Type of addresses to collect. Valid values: private, public, all.
    SdnTag string
    SDN Tag.
    StartIp string
    First IP address (inclusive) in the range for the address.
    StartMac string
    First MAC address in the range.
    SubType string
    Sub-type of address.
    Subnet string
    IP address and subnet mask of address.
    SubnetName string
    Subnet name.
    SwVersion string
    Dynamic address matching software version.
    TagDetectionLevel string
    Tag detection level of dynamic address object.
    TagType string
    Tag type of dynamic address object.
    Taggings List<Pulumiverse.Fortios.Firewall.Inputs.AddressTagging>
    Config object tagging. The structure of tagging block is documented below.
    Tenant string
    Tenant.
    Type string
    Type of address.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Visibility string
    Enable/disable address visibility in the GUI. Valid values: enable, disable.
    Wildcard string
    IP address and wildcard netmask.
    WildcardFqdn string
    Fully Qualified Domain Name with wildcard characters.
    AllowRouting string
    Enable/disable use of this address in the static route configuration. Valid values: enable, disable.
    AssociatedInterface string
    Network interface associated with address.
    CacheTtl int
    Defines the minimal TTL of individual IP addresses in FQDN cache measured in seconds.
    ClearpassSpt string
    SPT (System Posture Token) value. Valid values: unknown, healthy, quarantine, checkup, transient, infected.
    Color int
    Color of icon on the GUI.
    Comment string
    Comment.
    Country string
    IP addresses associated to a specific country.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    EndIp string
    Final IP address (inclusive) in the range for the address.
    EndMac string
    Last MAC address in the range.
    EpgName string
    Endpoint group name.
    FabricObject string
    Security Fabric global object setting. Valid values: enable, disable.
    Filter string
    Match criteria filter.
    Fqdn string
    Fully Qualified Domain Name address.
    FssoGroups []AddressFssoGroupArgs
    FSSO group(s). The structure of fsso_group block is documented below.
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    HwModel string
    Dynamic address matching hardware model.
    HwVendor string
    Dynamic address matching hardware vendor.
    Interface string
    Name of interface whose IP address is to be used.
    Lists []AddressListArgs
    IP address list. The structure of list block is documented below.
    Macaddrs []AddressMacaddrArgs
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    Name string
    Address name.
    NodeIpOnly string
    Enable/disable collection of node addresses only in Kubernetes. Valid values: enable, disable.
    ObjId string
    Object ID for NSX.
    ObjTag string
    Tag of dynamic address object.
    ObjType string
    Object type. Valid values: ip, mac.
    Organization string
    Organization domain name (Syntax: organization/domain).
    Os string
    Dynamic address matching operating system.
    PolicyGroup string
    Policy group name.
    RouteTag int
    route-tag address.
    Sdn string
    SDN.
    SdnAddrType string
    Type of addresses to collect. Valid values: private, public, all.
    SdnTag string
    SDN Tag.
    StartIp string
    First IP address (inclusive) in the range for the address.
    StartMac string
    First MAC address in the range.
    SubType string
    Sub-type of address.
    Subnet string
    IP address and subnet mask of address.
    SubnetName string
    Subnet name.
    SwVersion string
    Dynamic address matching software version.
    TagDetectionLevel string
    Tag detection level of dynamic address object.
    TagType string
    Tag type of dynamic address object.
    Taggings []AddressTaggingArgs
    Config object tagging. The structure of tagging block is documented below.
    Tenant string
    Tenant.
    Type string
    Type of address.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Visibility string
    Enable/disable address visibility in the GUI. Valid values: enable, disable.
    Wildcard string
    IP address and wildcard netmask.
    WildcardFqdn string
    Fully Qualified Domain Name with wildcard characters.
    allowRouting String
    Enable/disable use of this address in the static route configuration. Valid values: enable, disable.
    associatedInterface String
    Network interface associated with address.
    cacheTtl Integer
    Defines the minimal TTL of individual IP addresses in FQDN cache measured in seconds.
    clearpassSpt String
    SPT (System Posture Token) value. Valid values: unknown, healthy, quarantine, checkup, transient, infected.
    color Integer
    Color of icon on the GUI.
    comment String
    Comment.
    country String
    IP addresses associated to a specific country.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    endIp String
    Final IP address (inclusive) in the range for the address.
    endMac String
    Last MAC address in the range.
    epgName String
    Endpoint group name.
    fabricObject String
    Security Fabric global object setting. Valid values: enable, disable.
    filter String
    Match criteria filter.
    fqdn String
    Fully Qualified Domain Name address.
    fssoGroups List<AddressFssoGroup>
    FSSO group(s). The structure of fsso_group block is documented below.
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    hwModel String
    Dynamic address matching hardware model.
    hwVendor String
    Dynamic address matching hardware vendor.
    interface_ String
    Name of interface whose IP address is to be used.
    lists List<AddressList>
    IP address list. The structure of list block is documented below.
    macaddrs List<AddressMacaddr>
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name String
    Address name.
    nodeIpOnly String
    Enable/disable collection of node addresses only in Kubernetes. Valid values: enable, disable.
    objId String
    Object ID for NSX.
    objTag String
    Tag of dynamic address object.
    objType String
    Object type. Valid values: ip, mac.
    organization String
    Organization domain name (Syntax: organization/domain).
    os String
    Dynamic address matching operating system.
    policyGroup String
    Policy group name.
    routeTag Integer
    route-tag address.
    sdn String
    SDN.
    sdnAddrType String
    Type of addresses to collect. Valid values: private, public, all.
    sdnTag String
    SDN Tag.
    startIp String
    First IP address (inclusive) in the range for the address.
    startMac String
    First MAC address in the range.
    subType String
    Sub-type of address.
    subnet String
    IP address and subnet mask of address.
    subnetName String
    Subnet name.
    swVersion String
    Dynamic address matching software version.
    tagDetectionLevel String
    Tag detection level of dynamic address object.
    tagType String
    Tag type of dynamic address object.
    taggings List<AddressTagging>
    Config object tagging. The structure of tagging block is documented below.
    tenant String
    Tenant.
    type String
    Type of address.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    visibility String
    Enable/disable address visibility in the GUI. Valid values: enable, disable.
    wildcard String
    IP address and wildcard netmask.
    wildcardFqdn String
    Fully Qualified Domain Name with wildcard characters.
    allowRouting string
    Enable/disable use of this address in the static route configuration. Valid values: enable, disable.
    associatedInterface string
    Network interface associated with address.
    cacheTtl number
    Defines the minimal TTL of individual IP addresses in FQDN cache measured in seconds.
    clearpassSpt string
    SPT (System Posture Token) value. Valid values: unknown, healthy, quarantine, checkup, transient, infected.
    color number
    Color of icon on the GUI.
    comment string
    Comment.
    country string
    IP addresses associated to a specific country.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    endIp string
    Final IP address (inclusive) in the range for the address.
    endMac string
    Last MAC address in the range.
    epgName string
    Endpoint group name.
    fabricObject string
    Security Fabric global object setting. Valid values: enable, disable.
    filter string
    Match criteria filter.
    fqdn string
    Fully Qualified Domain Name address.
    fssoGroups AddressFssoGroup[]
    FSSO group(s). The structure of fsso_group block is documented below.
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    hwModel string
    Dynamic address matching hardware model.
    hwVendor string
    Dynamic address matching hardware vendor.
    interface string
    Name of interface whose IP address is to be used.
    lists AddressList[]
    IP address list. The structure of list block is documented below.
    macaddrs AddressMacaddr[]
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name string
    Address name.
    nodeIpOnly string
    Enable/disable collection of node addresses only in Kubernetes. Valid values: enable, disable.
    objId string
    Object ID for NSX.
    objTag string
    Tag of dynamic address object.
    objType string
    Object type. Valid values: ip, mac.
    organization string
    Organization domain name (Syntax: organization/domain).
    os string
    Dynamic address matching operating system.
    policyGroup string
    Policy group name.
    routeTag number
    route-tag address.
    sdn string
    SDN.
    sdnAddrType string
    Type of addresses to collect. Valid values: private, public, all.
    sdnTag string
    SDN Tag.
    startIp string
    First IP address (inclusive) in the range for the address.
    startMac string
    First MAC address in the range.
    subType string
    Sub-type of address.
    subnet string
    IP address and subnet mask of address.
    subnetName string
    Subnet name.
    swVersion string
    Dynamic address matching software version.
    tagDetectionLevel string
    Tag detection level of dynamic address object.
    tagType string
    Tag type of dynamic address object.
    taggings AddressTagging[]
    Config object tagging. The structure of tagging block is documented below.
    tenant string
    Tenant.
    type string
    Type of address.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    visibility string
    Enable/disable address visibility in the GUI. Valid values: enable, disable.
    wildcard string
    IP address and wildcard netmask.
    wildcardFqdn string
    Fully Qualified Domain Name with wildcard characters.
    allow_routing str
    Enable/disable use of this address in the static route configuration. Valid values: enable, disable.
    associated_interface str
    Network interface associated with address.
    cache_ttl int
    Defines the minimal TTL of individual IP addresses in FQDN cache measured in seconds.
    clearpass_spt str
    SPT (System Posture Token) value. Valid values: unknown, healthy, quarantine, checkup, transient, infected.
    color int
    Color of icon on the GUI.
    comment str
    Comment.
    country str
    IP addresses associated to a specific country.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    end_ip str
    Final IP address (inclusive) in the range for the address.
    end_mac str
    Last MAC address in the range.
    epg_name str
    Endpoint group name.
    fabric_object str
    Security Fabric global object setting. Valid values: enable, disable.
    filter str
    Match criteria filter.
    fqdn str
    Fully Qualified Domain Name address.
    fsso_groups Sequence[AddressFssoGroupArgs]
    FSSO group(s). The structure of fsso_group block is documented below.
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    hw_model str
    Dynamic address matching hardware model.
    hw_vendor str
    Dynamic address matching hardware vendor.
    interface str
    Name of interface whose IP address is to be used.
    lists Sequence[AddressListArgs]
    IP address list. The structure of list block is documented below.
    macaddrs Sequence[AddressMacaddrArgs]
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name str
    Address name.
    node_ip_only str
    Enable/disable collection of node addresses only in Kubernetes. Valid values: enable, disable.
    obj_id str
    Object ID for NSX.
    obj_tag str
    Tag of dynamic address object.
    obj_type str
    Object type. Valid values: ip, mac.
    organization str
    Organization domain name (Syntax: organization/domain).
    os str
    Dynamic address matching operating system.
    policy_group str
    Policy group name.
    route_tag int
    route-tag address.
    sdn str
    SDN.
    sdn_addr_type str
    Type of addresses to collect. Valid values: private, public, all.
    sdn_tag str
    SDN Tag.
    start_ip str
    First IP address (inclusive) in the range for the address.
    start_mac str
    First MAC address in the range.
    sub_type str
    Sub-type of address.
    subnet str
    IP address and subnet mask of address.
    subnet_name str
    Subnet name.
    sw_version str
    Dynamic address matching software version.
    tag_detection_level str
    Tag detection level of dynamic address object.
    tag_type str
    Tag type of dynamic address object.
    taggings Sequence[AddressTaggingArgs]
    Config object tagging. The structure of tagging block is documented below.
    tenant str
    Tenant.
    type str
    Type of address.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    visibility str
    Enable/disable address visibility in the GUI. Valid values: enable, disable.
    wildcard str
    IP address and wildcard netmask.
    wildcard_fqdn str
    Fully Qualified Domain Name with wildcard characters.
    allowRouting String
    Enable/disable use of this address in the static route configuration. Valid values: enable, disable.
    associatedInterface String
    Network interface associated with address.
    cacheTtl Number
    Defines the minimal TTL of individual IP addresses in FQDN cache measured in seconds.
    clearpassSpt String
    SPT (System Posture Token) value. Valid values: unknown, healthy, quarantine, checkup, transient, infected.
    color Number
    Color of icon on the GUI.
    comment String
    Comment.
    country String
    IP addresses associated to a specific country.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    endIp String
    Final IP address (inclusive) in the range for the address.
    endMac String
    Last MAC address in the range.
    epgName String
    Endpoint group name.
    fabricObject String
    Security Fabric global object setting. Valid values: enable, disable.
    filter String
    Match criteria filter.
    fqdn String
    Fully Qualified Domain Name address.
    fssoGroups List<Property Map>
    FSSO group(s). The structure of fsso_group block is documented below.
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    hwModel String
    Dynamic address matching hardware model.
    hwVendor String
    Dynamic address matching hardware vendor.
    interface String
    Name of interface whose IP address is to be used.
    lists List<Property Map>
    IP address list. The structure of list block is documented below.
    macaddrs List<Property Map>
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name String
    Address name.
    nodeIpOnly String
    Enable/disable collection of node addresses only in Kubernetes. Valid values: enable, disable.
    objId String
    Object ID for NSX.
    objTag String
    Tag of dynamic address object.
    objType String
    Object type. Valid values: ip, mac.
    organization String
    Organization domain name (Syntax: organization/domain).
    os String
    Dynamic address matching operating system.
    policyGroup String
    Policy group name.
    routeTag Number
    route-tag address.
    sdn String
    SDN.
    sdnAddrType String
    Type of addresses to collect. Valid values: private, public, all.
    sdnTag String
    SDN Tag.
    startIp String
    First IP address (inclusive) in the range for the address.
    startMac String
    First MAC address in the range.
    subType String
    Sub-type of address.
    subnet String
    IP address and subnet mask of address.
    subnetName String
    Subnet name.
    swVersion String
    Dynamic address matching software version.
    tagDetectionLevel String
    Tag detection level of dynamic address object.
    tagType String
    Tag type of dynamic address object.
    taggings List<Property Map>
    Config object tagging. The structure of tagging block is documented below.
    tenant String
    Tenant.
    type String
    Type of address.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    visibility String
    Enable/disable address visibility in the GUI. Valid values: enable, disable.
    wildcard String
    IP address and wildcard netmask.
    wildcardFqdn String
    Fully Qualified Domain Name with wildcard characters.

    Supporting Types

    AddressFssoGroup, AddressFssoGroupArgs

    Name string
    FSSO group name.
    Name string
    FSSO group name.
    name String
    FSSO group name.
    name string
    FSSO group name.
    name str
    FSSO group name.
    name String
    FSSO group name.

    AddressList, AddressListArgs

    Ip string
    IP.
    Ip string
    IP.
    ip String
    IP.
    ip string
    IP.
    ip str
    IP.
    ip String
    IP.

    AddressMacaddr, AddressMacaddrArgs

    Macaddr string
    MAC address ranges [-] separated by space.
    Macaddr string
    MAC address ranges [-] separated by space.
    macaddr String
    MAC address ranges [-] separated by space.
    macaddr string
    MAC address ranges [-] separated by space.
    macaddr str
    MAC address ranges [-] separated by space.
    macaddr String
    MAC address ranges [-] separated by space.

    AddressTagging, AddressTaggingArgs

    Category string
    Tag category.
    Name string
    Tagging entry name.
    Tags List<Pulumiverse.Fortios.Firewall.Inputs.AddressTaggingTag>
    Tags. The structure of tags block is documented below.
    Category string
    Tag category.
    Name string
    Tagging entry name.
    Tags []AddressTaggingTag
    Tags. The structure of tags block is documented below.
    category String
    Tag category.
    name String
    Tagging entry name.
    tags List<AddressTaggingTag>
    Tags. The structure of tags block is documented below.
    category string
    Tag category.
    name string
    Tagging entry name.
    tags AddressTaggingTag[]
    Tags. The structure of tags block is documented below.
    category str
    Tag category.
    name str
    Tagging entry name.
    tags Sequence[AddressTaggingTag]
    Tags. The structure of tags block is documented below.
    category String
    Tag category.
    name String
    Tagging entry name.
    tags List<Property Map>
    Tags. The structure of tags block is documented below.

    AddressTaggingTag, AddressTaggingTagArgs

    Name string
    Tag name.
    Name string
    Tag name.
    name String
    Tag name.
    name string
    Tag name.
    name str
    Tag name.
    name String
    Tag name.

    Import

    Firewall Address can be imported using any of these accepted formats:

    $ pulumi import fortios:firewall/address:Address labelname {{name}}
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:firewall/address:Address labelname {{name}}
    

    $ unset “FORTIOS_IMPORT_TABLE”

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

    Package Details

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