Proxmox Virtual Environment (Proxmox VE) v7.13.0 published on Tuesday, Feb 10, 2026 by Daniel Muehlbachler-Pietrzykowski
Proxmox Virtual Environment (Proxmox VE) v7.13.0 published on Tuesday, Feb 10, 2026 by Daniel Muehlbachler-Pietrzykowski
OpenFabric Fabric in Proxmox SDN. Fabrics in Proxmox VE SDN provide automated routing between nodes in a cluster.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
const main = proxmoxve.Sdn.fabric.getOpenfabric({
id: "main-fabric",
});
import pulumi
import pulumi_proxmoxve as proxmoxve
main = proxmoxve.Sdn.fabric.get_openfabric(id="main-fabric")
package main
import (
"github.com/muhlba91/pulumi-proxmoxve/sdk/v7/go/proxmoxve/sdn"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sdn.GetOpenfabric(ctx, &fabric.GetOpenfabricArgs{
Id: "main-fabric",
}, nil)
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 main = ProxmoxVE.Sdn.Fabric.GetOpenfabric.Invoke(new()
{
Id = "main-fabric",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.proxmoxve.Sdn_fabric.Sdn_fabricFunctions;
import com.pulumi.proxmoxve.Sdn.inputs.GetOpenfabricArgs;
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) {
final var main = Sdn_fabricFunctions.getOpenfabric(GetOpenfabricArgs.builder()
.id("main-fabric")
.build());
}
}
variables:
main:
fn::invoke:
function: proxmoxve:Sdn/fabric:getOpenfabric
arguments:
id: main-fabric
Using getOpenfabric
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getOpenfabric(args: GetOpenfabricArgs, opts?: InvokeOptions): Promise<GetOpenfabricResult>
function getOpenfabricOutput(args: GetOpenfabricOutputArgs, opts?: InvokeOptions): Output<GetOpenfabricResult>def get_openfabric(id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetOpenfabricResult
def get_openfabric_output(id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetOpenfabricResult]func GetOpenfabric(ctx *Context, args *GetOpenfabricArgs, opts ...InvokeOption) (*GetOpenfabricResult, error)
func GetOpenfabricOutput(ctx *Context, args *GetOpenfabricOutputArgs, opts ...InvokeOption) GetOpenfabricResultOutput> Note: This function is named GetOpenfabric in the Go SDK.
public static class GetOpenfabric
{
public static Task<GetOpenfabricResult> InvokeAsync(GetOpenfabricArgs args, InvokeOptions? opts = null)
public static Output<GetOpenfabricResult> Invoke(GetOpenfabricInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetOpenfabricResult> getOpenfabric(GetOpenfabricArgs args, InvokeOptions options)
public static Output<GetOpenfabricResult> getOpenfabric(GetOpenfabricArgs args, InvokeOptions options)
fn::invoke:
function: proxmoxve:Sdn/fabric/getOpenfabric:getOpenfabric
arguments:
# arguments dictionaryThe following arguments are supported:
- Id string
- The unique identifier of the SDN fabric.
- Id string
- The unique identifier of the SDN fabric.
- id String
- The unique identifier of the SDN fabric.
- id string
- The unique identifier of the SDN fabric.
- id str
- The unique identifier of the SDN fabric.
- id String
- The unique identifier of the SDN fabric.
getOpenfabric Result
The following output properties are available:
- Csnp
Interval int - The csnp_interval property for OpenFabric.
- Hello
Interval int - The hello_interval property for OpenFabric.
- Id string
- The unique identifier of the SDN fabric.
- Ip6Prefix string
- IPv6 prefix cidr for the fabric.
- Ip
Prefix string - IPv4 prefix cidr for the fabric.
- Csnp
Interval int - The csnp_interval property for OpenFabric.
- Hello
Interval int - The hello_interval property for OpenFabric.
- Id string
- The unique identifier of the SDN fabric.
- Ip6Prefix string
- IPv6 prefix cidr for the fabric.
- Ip
Prefix string - IPv4 prefix cidr for the fabric.
- csnp
Interval Integer - The csnp_interval property for OpenFabric.
- hello
Interval Integer - The hello_interval property for OpenFabric.
- id String
- The unique identifier of the SDN fabric.
- ip6Prefix String
- IPv6 prefix cidr for the fabric.
- ip
Prefix String - IPv4 prefix cidr for the fabric.
- csnp
Interval number - The csnp_interval property for OpenFabric.
- hello
Interval number - The hello_interval property for OpenFabric.
- id string
- The unique identifier of the SDN fabric.
- ip6Prefix string
- IPv6 prefix cidr for the fabric.
- ip
Prefix string - IPv4 prefix cidr for the fabric.
- csnp_
interval int - The csnp_interval property for OpenFabric.
- hello_
interval int - The hello_interval property for OpenFabric.
- id str
- The unique identifier of the SDN fabric.
- ip6_
prefix str - IPv6 prefix cidr for the fabric.
- ip_
prefix str - IPv4 prefix cidr for the fabric.
- csnp
Interval Number - The csnp_interval property for OpenFabric.
- hello
Interval Number - The hello_interval property for OpenFabric.
- id String
- The unique identifier of the SDN fabric.
- ip6Prefix String
- IPv6 prefix cidr for the fabric.
- ip
Prefix String - IPv4 prefix cidr for the fabric.
Package Details
- Repository
- proxmoxve muhlba91/pulumi-proxmoxve
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
proxmoxTerraform Provider.
Proxmox Virtual Environment (Proxmox VE) v7.13.0 published on Tuesday, Feb 10, 2026 by Daniel Muehlbachler-Pietrzykowski
