1. Packages
  2. Proxmox Virtual Environment (Proxmox VE)
  3. API Docs
  4. Network
  5. FirewallIPSet
Proxmox Virtual Environment (Proxmox VE) v6.1.0 published on Sunday, Mar 24, 2024 by Daniel Muehlbachler-Pietrzykowski

proxmoxve.Network.FirewallIPSet

Explore with Pulumi AI

proxmoxve logo
Proxmox Virtual Environment (Proxmox VE) v6.1.0 published on Sunday, Mar 24, 2024 by Daniel Muehlbachler-Pietrzykowski

    An IPSet allows us to group multiple IP addresses, IP subnets and aliases. Aliases can be created on the cluster level, on VM / Container level.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
    
    const ipset = new proxmoxve.network.FirewallIPSet("ipset", {
        nodeName: proxmox_virtual_environment_vm.example.node_name,
        vmId: proxmox_virtual_environment_vm.example.vm_id,
        comment: "Managed by Terraform",
        cidrs: [
            {
                name: "192.168.0.0/23",
                comment: "Local network 1",
            },
            {
                name: "192.168.0.1",
                comment: "Server 1",
                nomatch: true,
            },
            {
                name: "192.168.2.1",
                comment: "Server 1",
            },
        ],
    }, {
        dependsOn: [proxmox_virtual_environment_vm.example],
    });
    
    import pulumi
    import pulumi_proxmoxve as proxmoxve
    
    ipset = proxmoxve.network.FirewallIPSet("ipset",
        node_name=proxmox_virtual_environment_vm["example"]["node_name"],
        vm_id=proxmox_virtual_environment_vm["example"]["vm_id"],
        comment="Managed by Terraform",
        cidrs=[
            proxmoxve.network.FirewallIPSetCidrArgs(
                name="192.168.0.0/23",
                comment="Local network 1",
            ),
            proxmoxve.network.FirewallIPSetCidrArgs(
                name="192.168.0.1",
                comment="Server 1",
                nomatch=True,
            ),
            proxmoxve.network.FirewallIPSetCidrArgs(
                name="192.168.2.1",
                comment="Server 1",
            ),
        ],
        opts=pulumi.ResourceOptions(depends_on=[proxmox_virtual_environment_vm["example"]]))
    
    package main
    
    import (
    	"github.com/muhlba91/pulumi-proxmoxve/sdk/v6/go/proxmoxve/Network"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Network.NewFirewallIPSet(ctx, "ipset", &Network.FirewallIPSetArgs{
    			NodeName: pulumi.Any(proxmox_virtual_environment_vm.Example.Node_name),
    			VmId:     pulumi.Any(proxmox_virtual_environment_vm.Example.Vm_id),
    			Comment:  pulumi.String("Managed by Terraform"),
    			Cidrs: network.FirewallIPSetCidrArray{
    				&network.FirewallIPSetCidrArgs{
    					Name:    pulumi.String("192.168.0.0/23"),
    					Comment: pulumi.String("Local network 1"),
    				},
    				&network.FirewallIPSetCidrArgs{
    					Name:    pulumi.String("192.168.0.1"),
    					Comment: pulumi.String("Server 1"),
    					Nomatch: pulumi.Bool(true),
    				},
    				&network.FirewallIPSetCidrArgs{
    					Name:    pulumi.String("192.168.2.1"),
    					Comment: pulumi.String("Server 1"),
    				},
    			},
    		}, pulumi.DependsOn([]pulumi.Resource{
    			proxmox_virtual_environment_vm.Example,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using ProxmoxVE = Pulumi.ProxmoxVE;
    
    return await Deployment.RunAsync(() => 
    {
        var ipset = new ProxmoxVE.Network.FirewallIPSet("ipset", new()
        {
            NodeName = proxmox_virtual_environment_vm.Example.Node_name,
            VmId = proxmox_virtual_environment_vm.Example.Vm_id,
            Comment = "Managed by Terraform",
            Cidrs = new[]
            {
                new ProxmoxVE.Network.Inputs.FirewallIPSetCidrArgs
                {
                    Name = "192.168.0.0/23",
                    Comment = "Local network 1",
                },
                new ProxmoxVE.Network.Inputs.FirewallIPSetCidrArgs
                {
                    Name = "192.168.0.1",
                    Comment = "Server 1",
                    Nomatch = true,
                },
                new ProxmoxVE.Network.Inputs.FirewallIPSetCidrArgs
                {
                    Name = "192.168.2.1",
                    Comment = "Server 1",
                },
            },
        }, new CustomResourceOptions
        {
            DependsOn = new[]
            {
                proxmox_virtual_environment_vm.Example,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.proxmoxve.Network.FirewallIPSet;
    import com.pulumi.proxmoxve.Network.FirewallIPSetArgs;
    import com.pulumi.proxmoxve.Network.inputs.FirewallIPSetCidrArgs;
    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 ipset = new FirewallIPSet("ipset", FirewallIPSetArgs.builder()        
                .nodeName(proxmox_virtual_environment_vm.example().node_name())
                .vmId(proxmox_virtual_environment_vm.example().vm_id())
                .comment("Managed by Terraform")
                .cidrs(            
                    FirewallIPSetCidrArgs.builder()
                        .name("192.168.0.0/23")
                        .comment("Local network 1")
                        .build(),
                    FirewallIPSetCidrArgs.builder()
                        .name("192.168.0.1")
                        .comment("Server 1")
                        .nomatch(true)
                        .build(),
                    FirewallIPSetCidrArgs.builder()
                        .name("192.168.2.1")
                        .comment("Server 1")
                        .build())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(proxmox_virtual_environment_vm.example())
                    .build());
    
        }
    }
    
    resources:
      ipset:
        type: proxmoxve:Network:FirewallIPSet
        properties:
          nodeName: ${proxmox_virtual_environment_vm.example.node_name}
          vmId: ${proxmox_virtual_environment_vm.example.vm_id}
          comment: Managed by Terraform
          cidrs:
            - name: 192.168.0.0/23
              comment: Local network 1
            - name: 192.168.0.1
              comment: Server 1
              nomatch: true
            - name: 192.168.2.1
              comment: Server 1
        options:
          dependson:
            - ${proxmox_virtual_environment_vm.example}
    

    Create FirewallIPSet Resource

    new FirewallIPSet(name: string, args?: FirewallIPSetArgs, opts?: CustomResourceOptions);
    @overload
    def FirewallIPSet(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      cidrs: Optional[Sequence[_network.FirewallIPSetCidrArgs]] = None,
                      comment: Optional[str] = None,
                      container_id: Optional[int] = None,
                      name: Optional[str] = None,
                      node_name: Optional[str] = None,
                      vm_id: Optional[int] = None)
    @overload
    def FirewallIPSet(resource_name: str,
                      args: Optional[FirewallIPSetArgs] = None,
                      opts: Optional[ResourceOptions] = None)
    func NewFirewallIPSet(ctx *Context, name string, args *FirewallIPSetArgs, opts ...ResourceOption) (*FirewallIPSet, error)
    public FirewallIPSet(string name, FirewallIPSetArgs? args = null, CustomResourceOptions? opts = null)
    public FirewallIPSet(String name, FirewallIPSetArgs args)
    public FirewallIPSet(String name, FirewallIPSetArgs args, CustomResourceOptions options)
    
    type: proxmoxve:Network:FirewallIPSet
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args FirewallIPSetArgs
    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 FirewallIPSetArgs
    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 FirewallIPSetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FirewallIPSetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FirewallIPSetArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Cidrs List<Pulumi.ProxmoxVE.Network.Inputs.FirewallIPSetCidr>
    IP/CIDR block (multiple blocks supported).
    Comment string
    Arbitrary string annotation.
    ContainerId int
    Container ID. Leave empty for cluster level aliases.
    Name string
    Network/IP specification in CIDR format.
    NodeName string
    Node name. Leave empty for cluster level aliases.
    VmId int
    VM ID. Leave empty for cluster level aliases.
    Cidrs []FirewallIPSetCidrArgs
    IP/CIDR block (multiple blocks supported).
    Comment string
    Arbitrary string annotation.
    ContainerId int
    Container ID. Leave empty for cluster level aliases.
    Name string
    Network/IP specification in CIDR format.
    NodeName string
    Node name. Leave empty for cluster level aliases.
    VmId int
    VM ID. Leave empty for cluster level aliases.
    cidrs List<FirewallIPSetCidr>
    IP/CIDR block (multiple blocks supported).
    comment String
    Arbitrary string annotation.
    containerId Integer
    Container ID. Leave empty for cluster level aliases.
    name String
    Network/IP specification in CIDR format.
    nodeName String
    Node name. Leave empty for cluster level aliases.
    vmId Integer
    VM ID. Leave empty for cluster level aliases.
    cidrs FirewallIPSetCidr[]
    IP/CIDR block (multiple blocks supported).
    comment string
    Arbitrary string annotation.
    containerId number
    Container ID. Leave empty for cluster level aliases.
    name string
    Network/IP specification in CIDR format.
    nodeName string
    Node name. Leave empty for cluster level aliases.
    vmId number
    VM ID. Leave empty for cluster level aliases.
    cidrs FirewallIPSetCidrArgs]
    IP/CIDR block (multiple blocks supported).
    comment str
    Arbitrary string annotation.
    container_id int
    Container ID. Leave empty for cluster level aliases.
    name str
    Network/IP specification in CIDR format.
    node_name str
    Node name. Leave empty for cluster level aliases.
    vm_id int
    VM ID. Leave empty for cluster level aliases.
    cidrs List<Property Map>
    IP/CIDR block (multiple blocks supported).
    comment String
    Arbitrary string annotation.
    containerId Number
    Container ID. Leave empty for cluster level aliases.
    name String
    Network/IP specification in CIDR format.
    nodeName String
    Node name. Leave empty for cluster level aliases.
    vmId Number
    VM ID. Leave empty for cluster level aliases.

    Outputs

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

    Get an existing FirewallIPSet 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?: FirewallIPSetState, opts?: CustomResourceOptions): FirewallIPSet
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cidrs: Optional[Sequence[_network.FirewallIPSetCidrArgs]] = None,
            comment: Optional[str] = None,
            container_id: Optional[int] = None,
            name: Optional[str] = None,
            node_name: Optional[str] = None,
            vm_id: Optional[int] = None) -> FirewallIPSet
    func GetFirewallIPSet(ctx *Context, name string, id IDInput, state *FirewallIPSetState, opts ...ResourceOption) (*FirewallIPSet, error)
    public static FirewallIPSet Get(string name, Input<string> id, FirewallIPSetState? state, CustomResourceOptions? opts = null)
    public static FirewallIPSet get(String name, Output<String> id, FirewallIPSetState 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:
    Cidrs List<Pulumi.ProxmoxVE.Network.Inputs.FirewallIPSetCidr>
    IP/CIDR block (multiple blocks supported).
    Comment string
    Arbitrary string annotation.
    ContainerId int
    Container ID. Leave empty for cluster level aliases.
    Name string
    Network/IP specification in CIDR format.
    NodeName string
    Node name. Leave empty for cluster level aliases.
    VmId int
    VM ID. Leave empty for cluster level aliases.
    Cidrs []FirewallIPSetCidrArgs
    IP/CIDR block (multiple blocks supported).
    Comment string
    Arbitrary string annotation.
    ContainerId int
    Container ID. Leave empty for cluster level aliases.
    Name string
    Network/IP specification in CIDR format.
    NodeName string
    Node name. Leave empty for cluster level aliases.
    VmId int
    VM ID. Leave empty for cluster level aliases.
    cidrs List<FirewallIPSetCidr>
    IP/CIDR block (multiple blocks supported).
    comment String
    Arbitrary string annotation.
    containerId Integer
    Container ID. Leave empty for cluster level aliases.
    name String
    Network/IP specification in CIDR format.
    nodeName String
    Node name. Leave empty for cluster level aliases.
    vmId Integer
    VM ID. Leave empty for cluster level aliases.
    cidrs FirewallIPSetCidr[]
    IP/CIDR block (multiple blocks supported).
    comment string
    Arbitrary string annotation.
    containerId number
    Container ID. Leave empty for cluster level aliases.
    name string
    Network/IP specification in CIDR format.
    nodeName string
    Node name. Leave empty for cluster level aliases.
    vmId number
    VM ID. Leave empty for cluster level aliases.
    cidrs FirewallIPSetCidrArgs]
    IP/CIDR block (multiple blocks supported).
    comment str
    Arbitrary string annotation.
    container_id int
    Container ID. Leave empty for cluster level aliases.
    name str
    Network/IP specification in CIDR format.
    node_name str
    Node name. Leave empty for cluster level aliases.
    vm_id int
    VM ID. Leave empty for cluster level aliases.
    cidrs List<Property Map>
    IP/CIDR block (multiple blocks supported).
    comment String
    Arbitrary string annotation.
    containerId Number
    Container ID. Leave empty for cluster level aliases.
    name String
    Network/IP specification in CIDR format.
    nodeName String
    Node name. Leave empty for cluster level aliases.
    vmId Number
    VM ID. Leave empty for cluster level aliases.

    Supporting Types

    FirewallIPSetCidr, FirewallIPSetCidrArgs

    Name string
    Network/IP specification in CIDR format.
    Comment string
    Arbitrary string annotation.
    Nomatch bool
    Entries marked as nomatch are skipped as if those were not added to the set.
    Name string
    Network/IP specification in CIDR format.
    Comment string
    Arbitrary string annotation.
    Nomatch bool
    Entries marked as nomatch are skipped as if those were not added to the set.
    name String
    Network/IP specification in CIDR format.
    comment String
    Arbitrary string annotation.
    nomatch Boolean
    Entries marked as nomatch are skipped as if those were not added to the set.
    name string
    Network/IP specification in CIDR format.
    comment string
    Arbitrary string annotation.
    nomatch boolean
    Entries marked as nomatch are skipped as if those were not added to the set.
    name str
    Network/IP specification in CIDR format.
    comment str
    Arbitrary string annotation.
    nomatch bool
    Entries marked as nomatch are skipped as if those were not added to the set.
    name String
    Network/IP specification in CIDR format.
    comment String
    Arbitrary string annotation.
    nomatch Boolean
    Entries marked as nomatch are skipped as if those were not added to the set.

    Package Details

    Repository
    proxmoxve muhlba91/pulumi-proxmoxve
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the proxmox Terraform Provider.
    proxmoxve logo
    Proxmox Virtual Environment (Proxmox VE) v6.1.0 published on Sunday, Mar 24, 2024 by Daniel Muehlbachler-Pietrzykowski