netbox.Rack
Explore with Pulumi AI
From the official documentation:
The rack model represents a physical two- or four-post equipment rack in which devices can be installed. Each rack must be assigned to a site, and may optionally be assigned to a location within that site. Racks can also be organized by user-defined functional roles. The name and facility ID of each rack within a location must be unique.
Rack height is measured in rack units (U); racks are commonly between 42U and 48U tall, but NetBox allows you to define racks of arbitrary height. A toggle is provided to indicate whether rack units are in ascending (from the ground up) or descending order.
Each rack is assigned a name and (optionally) a separate facility ID. This is helpful when leasing space in a data center your organization does not own: The facility will often assign a seemingly arbitrary ID to a rack (for example, “M204.313”) whereas internally you refer to is simply as “R113.” A unique serial number and asset tag may also be associated with each rack.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as netbox from "@pulumi/netbox";
const testSite = new netbox.Site("testSite", {status: "active"});
const testRack = new netbox.Rack("testRack", {
siteId: testSite.siteId,
status: "reserved",
width: 19,
uHeight: 48,
});
import pulumi
import pulumi_netbox as netbox
test_site = netbox.Site("testSite", status="active")
test_rack = netbox.Rack("testRack",
site_id=test_site.site_id,
status="reserved",
width=19,
u_height=48)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/netbox/v3/netbox"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
testSite, err := netbox.NewSite(ctx, "testSite", &netbox.SiteArgs{
Status: pulumi.String("active"),
})
if err != nil {
return err
}
_, err = netbox.NewRack(ctx, "testRack", &netbox.RackArgs{
SiteId: testSite.SiteId,
Status: pulumi.String("reserved"),
Width: pulumi.Float64(19),
UHeight: pulumi.Float64(48),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Netbox = Pulumi.Netbox;
return await Deployment.RunAsync(() =>
{
var testSite = new Netbox.Site("testSite", new()
{
Status = "active",
});
var testRack = new Netbox.Rack("testRack", new()
{
SiteId = testSite.SiteId,
Status = "reserved",
Width = 19,
UHeight = 48,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.netbox.Site;
import com.pulumi.netbox.SiteArgs;
import com.pulumi.netbox.Rack;
import com.pulumi.netbox.RackArgs;
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 testSite = new Site("testSite", SiteArgs.builder()
.status("active")
.build());
var testRack = new Rack("testRack", RackArgs.builder()
.siteId(testSite.siteId())
.status("reserved")
.width(19)
.uHeight(48)
.build());
}
}
resources:
testSite:
type: netbox:Site
properties:
status: active
testRack:
type: netbox:Rack
properties:
siteId: ${testSite.siteId}
status: reserved
width: 19
uHeight: 48
Create Rack Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Rack(name: string, args: RackArgs, opts?: CustomResourceOptions);
@overload
def Rack(resource_name: str,
args: RackArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Rack(resource_name: str,
opts: Optional[ResourceOptions] = None,
site_id: Optional[float] = None,
status: Optional[str] = None,
form_factor: Optional[str] = None,
name: Optional[str] = None,
description: Optional[str] = None,
facility_id: Optional[str] = None,
asset_tag: Optional[str] = None,
location_id: Optional[float] = None,
max_weight: Optional[float] = None,
rack_id: Optional[str] = None,
outer_width: Optional[float] = None,
outer_depth: Optional[float] = None,
desc_units: Optional[bool] = None,
outer_unit: Optional[str] = None,
mounting_depth: Optional[float] = None,
role_id: Optional[float] = None,
serial: Optional[str] = None,
custom_fields: Optional[Mapping[str, str]] = None,
comments: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
tenant_id: Optional[float] = None,
u_height: Optional[float] = None,
weight: Optional[float] = None,
weight_unit: Optional[str] = None,
width: Optional[float] = None)
func NewRack(ctx *Context, name string, args RackArgs, opts ...ResourceOption) (*Rack, error)
public Rack(string name, RackArgs args, CustomResourceOptions? opts = null)
type: netbox:Rack
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 RackArgs
- 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 RackArgs
- 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 RackArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RackArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RackArgs
- 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 rackResource = new Netbox.Rack("rackResource", new()
{
SiteId = 0,
Status = "string",
FormFactor = "string",
Name = "string",
Description = "string",
FacilityId = "string",
AssetTag = "string",
LocationId = 0,
MaxWeight = 0,
RackId = "string",
OuterWidth = 0,
OuterDepth = 0,
DescUnits = false,
OuterUnit = "string",
MountingDepth = 0,
RoleId = 0,
Serial = "string",
CustomFields =
{
{ "string", "string" },
},
Comments = "string",
Tags = new[]
{
"string",
},
TenantId = 0,
UHeight = 0,
Weight = 0,
WeightUnit = "string",
Width = 0,
});
example, err := netbox.NewRack(ctx, "rackResource", &netbox.RackArgs{
SiteId: pulumi.Float64(0),
Status: pulumi.String("string"),
FormFactor: pulumi.String("string"),
Name: pulumi.String("string"),
Description: pulumi.String("string"),
FacilityId: pulumi.String("string"),
AssetTag: pulumi.String("string"),
LocationId: pulumi.Float64(0),
MaxWeight: pulumi.Float64(0),
RackId: pulumi.String("string"),
OuterWidth: pulumi.Float64(0),
OuterDepth: pulumi.Float64(0),
DescUnits: pulumi.Bool(false),
OuterUnit: pulumi.String("string"),
MountingDepth: pulumi.Float64(0),
RoleId: pulumi.Float64(0),
Serial: pulumi.String("string"),
CustomFields: pulumi.StringMap{
"string": pulumi.String("string"),
},
Comments: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
TenantId: pulumi.Float64(0),
UHeight: pulumi.Float64(0),
Weight: pulumi.Float64(0),
WeightUnit: pulumi.String("string"),
Width: pulumi.Float64(0),
})
var rackResource = new Rack("rackResource", RackArgs.builder()
.siteId(0)
.status("string")
.formFactor("string")
.name("string")
.description("string")
.facilityId("string")
.assetTag("string")
.locationId(0)
.maxWeight(0)
.rackId("string")
.outerWidth(0)
.outerDepth(0)
.descUnits(false)
.outerUnit("string")
.mountingDepth(0)
.roleId(0)
.serial("string")
.customFields(Map.of("string", "string"))
.comments("string")
.tags("string")
.tenantId(0)
.uHeight(0)
.weight(0)
.weightUnit("string")
.width(0)
.build());
rack_resource = netbox.Rack("rackResource",
site_id=0,
status="string",
form_factor="string",
name="string",
description="string",
facility_id="string",
asset_tag="string",
location_id=0,
max_weight=0,
rack_id="string",
outer_width=0,
outer_depth=0,
desc_units=False,
outer_unit="string",
mounting_depth=0,
role_id=0,
serial="string",
custom_fields={
"string": "string",
},
comments="string",
tags=["string"],
tenant_id=0,
u_height=0,
weight=0,
weight_unit="string",
width=0)
const rackResource = new netbox.Rack("rackResource", {
siteId: 0,
status: "string",
formFactor: "string",
name: "string",
description: "string",
facilityId: "string",
assetTag: "string",
locationId: 0,
maxWeight: 0,
rackId: "string",
outerWidth: 0,
outerDepth: 0,
descUnits: false,
outerUnit: "string",
mountingDepth: 0,
roleId: 0,
serial: "string",
customFields: {
string: "string",
},
comments: "string",
tags: ["string"],
tenantId: 0,
uHeight: 0,
weight: 0,
weightUnit: "string",
width: 0,
});
type: netbox:Rack
properties:
assetTag: string
comments: string
customFields:
string: string
descUnits: false
description: string
facilityId: string
formFactor: string
locationId: 0
maxWeight: 0
mountingDepth: 0
name: string
outerDepth: 0
outerUnit: string
outerWidth: 0
rackId: string
roleId: 0
serial: string
siteId: 0
status: string
tags:
- string
tenantId: 0
uHeight: 0
weight: 0
weightUnit: string
width: 0
Rack Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Rack resource accepts the following input properties:
- Site
Id double - Status string
- Valid values are
reserved
,available
,planned
,active
anddeprecated
. - Asset
Tag string - Comments string
- Custom
Fields Dictionary<string, string> - Desc
Units bool - If rack units are descending. Defaults to
false
. - Description string
- Facility
Id string - Form
Factor string - Valid values are
2-post-frame
,4-post-frame
,4-post-cabinet
,wall-frame
,wall-frame-vertical
,wall-cabinet
andwall-cabinet-vertical
. - Location
Id double - Max
Weight double - Mounting
Depth double - Name string
- Outer
Depth double - Outer
Unit string - Valid values are
mm
andin
. Required whenouter_width
andouter_depth
is set. - Outer
Width double - Rack
Id string - The ID of this resource.
- Role
Id double - Serial string
- List<string>
- Tenant
Id double - UHeight double
- Weight double
- Weight
Unit string - Valid values are
kg
,g
,lb
andoz
. Required whenweight
andmax_weight
is set. - Width double
- Valid values are
10
,19
,21
and23
.
- Site
Id float64 - Status string
- Valid values are
reserved
,available
,planned
,active
anddeprecated
. - Asset
Tag string - Comments string
- Custom
Fields map[string]string - Desc
Units bool - If rack units are descending. Defaults to
false
. - Description string
- Facility
Id string - Form
Factor string - Valid values are
2-post-frame
,4-post-frame
,4-post-cabinet
,wall-frame
,wall-frame-vertical
,wall-cabinet
andwall-cabinet-vertical
. - Location
Id float64 - Max
Weight float64 - Mounting
Depth float64 - Name string
- Outer
Depth float64 - Outer
Unit string - Valid values are
mm
andin
. Required whenouter_width
andouter_depth
is set. - Outer
Width float64 - Rack
Id string - The ID of this resource.
- Role
Id float64 - Serial string
- []string
- Tenant
Id float64 - UHeight float64
- Weight float64
- Weight
Unit string - Valid values are
kg
,g
,lb
andoz
. Required whenweight
andmax_weight
is set. - Width float64
- Valid values are
10
,19
,21
and23
.
- site
Id Double - status String
- Valid values are
reserved
,available
,planned
,active
anddeprecated
. - asset
Tag String - comments String
- custom
Fields Map<String,String> - desc
Units Boolean - If rack units are descending. Defaults to
false
. - description String
- facility
Id String - form
Factor String - Valid values are
2-post-frame
,4-post-frame
,4-post-cabinet
,wall-frame
,wall-frame-vertical
,wall-cabinet
andwall-cabinet-vertical
. - location
Id Double - max
Weight Double - mounting
Depth Double - name String
- outer
Depth Double - outer
Unit String - Valid values are
mm
andin
. Required whenouter_width
andouter_depth
is set. - outer
Width Double - rack
Id String - The ID of this resource.
- role
Id Double - serial String
- List<String>
- tenant
Id Double - u
Height Double - weight Double
- weight
Unit String - Valid values are
kg
,g
,lb
andoz
. Required whenweight
andmax_weight
is set. - width Double
- Valid values are
10
,19
,21
and23
.
- site
Id number - status string
- Valid values are
reserved
,available
,planned
,active
anddeprecated
. - asset
Tag string - comments string
- custom
Fields {[key: string]: string} - desc
Units boolean - If rack units are descending. Defaults to
false
. - description string
- facility
Id string - form
Factor string - Valid values are
2-post-frame
,4-post-frame
,4-post-cabinet
,wall-frame
,wall-frame-vertical
,wall-cabinet
andwall-cabinet-vertical
. - location
Id number - max
Weight number - mounting
Depth number - name string
- outer
Depth number - outer
Unit string - Valid values are
mm
andin
. Required whenouter_width
andouter_depth
is set. - outer
Width number - rack
Id string - The ID of this resource.
- role
Id number - serial string
- string[]
- tenant
Id number - u
Height number - weight number
- weight
Unit string - Valid values are
kg
,g
,lb
andoz
. Required whenweight
andmax_weight
is set. - width number
- Valid values are
10
,19
,21
and23
.
- site_
id float - status str
- Valid values are
reserved
,available
,planned
,active
anddeprecated
. - asset_
tag str - comments str
- custom_
fields Mapping[str, str] - desc_
units bool - If rack units are descending. Defaults to
false
. - description str
- facility_
id str - form_
factor str - Valid values are
2-post-frame
,4-post-frame
,4-post-cabinet
,wall-frame
,wall-frame-vertical
,wall-cabinet
andwall-cabinet-vertical
. - location_
id float - max_
weight float - mounting_
depth float - name str
- outer_
depth float - outer_
unit str - Valid values are
mm
andin
. Required whenouter_width
andouter_depth
is set. - outer_
width float - rack_
id str - The ID of this resource.
- role_
id float - serial str
- Sequence[str]
- tenant_
id float - u_
height float - weight float
- weight_
unit str - Valid values are
kg
,g
,lb
andoz
. Required whenweight
andmax_weight
is set. - width float
- Valid values are
10
,19
,21
and23
.
- site
Id Number - status String
- Valid values are
reserved
,available
,planned
,active
anddeprecated
. - asset
Tag String - comments String
- custom
Fields Map<String> - desc
Units Boolean - If rack units are descending. Defaults to
false
. - description String
- facility
Id String - form
Factor String - Valid values are
2-post-frame
,4-post-frame
,4-post-cabinet
,wall-frame
,wall-frame-vertical
,wall-cabinet
andwall-cabinet-vertical
. - location
Id Number - max
Weight Number - mounting
Depth Number - name String
- outer
Depth Number - outer
Unit String - Valid values are
mm
andin
. Required whenouter_width
andouter_depth
is set. - outer
Width Number - rack
Id String - The ID of this resource.
- role
Id Number - serial String
- List<String>
- tenant
Id Number - u
Height Number - weight Number
- weight
Unit String - Valid values are
kg
,g
,lb
andoz
. Required whenweight
andmax_weight
is set. - width Number
- Valid values are
10
,19
,21
and23
.
Outputs
All input properties are implicitly available as output properties. Additionally, the Rack 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 Rack Resource
Get an existing Rack 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?: RackState, opts?: CustomResourceOptions): Rack
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
asset_tag: Optional[str] = None,
comments: Optional[str] = None,
custom_fields: Optional[Mapping[str, str]] = None,
desc_units: Optional[bool] = None,
description: Optional[str] = None,
facility_id: Optional[str] = None,
form_factor: Optional[str] = None,
location_id: Optional[float] = None,
max_weight: Optional[float] = None,
mounting_depth: Optional[float] = None,
name: Optional[str] = None,
outer_depth: Optional[float] = None,
outer_unit: Optional[str] = None,
outer_width: Optional[float] = None,
rack_id: Optional[str] = None,
role_id: Optional[float] = None,
serial: Optional[str] = None,
site_id: Optional[float] = None,
status: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
tenant_id: Optional[float] = None,
u_height: Optional[float] = None,
weight: Optional[float] = None,
weight_unit: Optional[str] = None,
width: Optional[float] = None) -> Rack
func GetRack(ctx *Context, name string, id IDInput, state *RackState, opts ...ResourceOption) (*Rack, error)
public static Rack Get(string name, Input<string> id, RackState? state, CustomResourceOptions? opts = null)
public static Rack get(String name, Output<String> id, RackState state, CustomResourceOptions options)
resources: _: type: netbox:Rack get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Asset
Tag string - Comments string
- Custom
Fields Dictionary<string, string> - Desc
Units bool - If rack units are descending. Defaults to
false
. - Description string
- Facility
Id string - Form
Factor string - Valid values are
2-post-frame
,4-post-frame
,4-post-cabinet
,wall-frame
,wall-frame-vertical
,wall-cabinet
andwall-cabinet-vertical
. - Location
Id double - Max
Weight double - Mounting
Depth double - Name string
- Outer
Depth double - Outer
Unit string - Valid values are
mm
andin
. Required whenouter_width
andouter_depth
is set. - Outer
Width double - Rack
Id string - The ID of this resource.
- Role
Id double - Serial string
- Site
Id double - Status string
- Valid values are
reserved
,available
,planned
,active
anddeprecated
. - List<string>
- Tenant
Id double - UHeight double
- Weight double
- Weight
Unit string - Valid values are
kg
,g
,lb
andoz
. Required whenweight
andmax_weight
is set. - Width double
- Valid values are
10
,19
,21
and23
.
- Asset
Tag string - Comments string
- Custom
Fields map[string]string - Desc
Units bool - If rack units are descending. Defaults to
false
. - Description string
- Facility
Id string - Form
Factor string - Valid values are
2-post-frame
,4-post-frame
,4-post-cabinet
,wall-frame
,wall-frame-vertical
,wall-cabinet
andwall-cabinet-vertical
. - Location
Id float64 - Max
Weight float64 - Mounting
Depth float64 - Name string
- Outer
Depth float64 - Outer
Unit string - Valid values are
mm
andin
. Required whenouter_width
andouter_depth
is set. - Outer
Width float64 - Rack
Id string - The ID of this resource.
- Role
Id float64 - Serial string
- Site
Id float64 - Status string
- Valid values are
reserved
,available
,planned
,active
anddeprecated
. - []string
- Tenant
Id float64 - UHeight float64
- Weight float64
- Weight
Unit string - Valid values are
kg
,g
,lb
andoz
. Required whenweight
andmax_weight
is set. - Width float64
- Valid values are
10
,19
,21
and23
.
- asset
Tag String - comments String
- custom
Fields Map<String,String> - desc
Units Boolean - If rack units are descending. Defaults to
false
. - description String
- facility
Id String - form
Factor String - Valid values are
2-post-frame
,4-post-frame
,4-post-cabinet
,wall-frame
,wall-frame-vertical
,wall-cabinet
andwall-cabinet-vertical
. - location
Id Double - max
Weight Double - mounting
Depth Double - name String
- outer
Depth Double - outer
Unit String - Valid values are
mm
andin
. Required whenouter_width
andouter_depth
is set. - outer
Width Double - rack
Id String - The ID of this resource.
- role
Id Double - serial String
- site
Id Double - status String
- Valid values are
reserved
,available
,planned
,active
anddeprecated
. - List<String>
- tenant
Id Double - u
Height Double - weight Double
- weight
Unit String - Valid values are
kg
,g
,lb
andoz
. Required whenweight
andmax_weight
is set. - width Double
- Valid values are
10
,19
,21
and23
.
- asset
Tag string - comments string
- custom
Fields {[key: string]: string} - desc
Units boolean - If rack units are descending. Defaults to
false
. - description string
- facility
Id string - form
Factor string - Valid values are
2-post-frame
,4-post-frame
,4-post-cabinet
,wall-frame
,wall-frame-vertical
,wall-cabinet
andwall-cabinet-vertical
. - location
Id number - max
Weight number - mounting
Depth number - name string
- outer
Depth number - outer
Unit string - Valid values are
mm
andin
. Required whenouter_width
andouter_depth
is set. - outer
Width number - rack
Id string - The ID of this resource.
- role
Id number - serial string
- site
Id number - status string
- Valid values are
reserved
,available
,planned
,active
anddeprecated
. - string[]
- tenant
Id number - u
Height number - weight number
- weight
Unit string - Valid values are
kg
,g
,lb
andoz
. Required whenweight
andmax_weight
is set. - width number
- Valid values are
10
,19
,21
and23
.
- asset_
tag str - comments str
- custom_
fields Mapping[str, str] - desc_
units bool - If rack units are descending. Defaults to
false
. - description str
- facility_
id str - form_
factor str - Valid values are
2-post-frame
,4-post-frame
,4-post-cabinet
,wall-frame
,wall-frame-vertical
,wall-cabinet
andwall-cabinet-vertical
. - location_
id float - max_
weight float - mounting_
depth float - name str
- outer_
depth float - outer_
unit str - Valid values are
mm
andin
. Required whenouter_width
andouter_depth
is set. - outer_
width float - rack_
id str - The ID of this resource.
- role_
id float - serial str
- site_
id float - status str
- Valid values are
reserved
,available
,planned
,active
anddeprecated
. - Sequence[str]
- tenant_
id float - u_
height float - weight float
- weight_
unit str - Valid values are
kg
,g
,lb
andoz
. Required whenweight
andmax_weight
is set. - width float
- Valid values are
10
,19
,21
and23
.
- asset
Tag String - comments String
- custom
Fields Map<String> - desc
Units Boolean - If rack units are descending. Defaults to
false
. - description String
- facility
Id String - form
Factor String - Valid values are
2-post-frame
,4-post-frame
,4-post-cabinet
,wall-frame
,wall-frame-vertical
,wall-cabinet
andwall-cabinet-vertical
. - location
Id Number - max
Weight Number - mounting
Depth Number - name String
- outer
Depth Number - outer
Unit String - Valid values are
mm
andin
. Required whenouter_width
andouter_depth
is set. - outer
Width Number - rack
Id String - The ID of this resource.
- role
Id Number - serial String
- site
Id Number - status String
- Valid values are
reserved
,available
,planned
,active
anddeprecated
. - List<String>
- tenant
Id Number - u
Height Number - weight Number
- weight
Unit String - Valid values are
kg
,g
,lb
andoz
. Required whenweight
andmax_weight
is set. - width Number
- Valid values are
10
,19
,21
and23
.
Package Details
- Repository
- netbox e-breuninger/terraform-provider-netbox
- License
- Notes
- This Pulumi package is based on the
netbox
Terraform Provider.