civo.Network
Explore with Pulumi AI
Provides a Civo network resource. This can be used to create, modify, and delete networks.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as civo from "@pulumi/civo";
const customNet = new civo.Network("custom_net", {label: "test_network"});
import pulumi
import pulumi_civo as civo
custom_net = civo.Network("custom_net", label="test_network")
package main
import (
"github.com/pulumi/pulumi-civo/sdk/v2/go/civo"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := civo.NewNetwork(ctx, "custom_net", &civo.NetworkArgs{
Label: pulumi.String("test_network"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Civo = Pulumi.Civo;
return await Deployment.RunAsync(() =>
{
var customNet = new Civo.Network("custom_net", new()
{
Label = "test_network",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.civo.Network;
import com.pulumi.civo.NetworkArgs;
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 customNet = new Network("customNet", NetworkArgs.builder()
.label("test_network")
.build());
}
}
resources:
customNet:
type: civo:Network
name: custom_net
properties:
label: test_network
Create Network Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Network(name: string, args: NetworkArgs, opts?: CustomResourceOptions);
@overload
def Network(resource_name: str,
args: NetworkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Network(resource_name: str,
opts: Optional[ResourceOptions] = None,
label: Optional[str] = None,
cidr_v4: Optional[str] = None,
nameservers_v4s: Optional[Sequence[str]] = None,
region: Optional[str] = None,
vlan_allocation_pool_v4_end: Optional[str] = None,
vlan_allocation_pool_v4_start: Optional[str] = None,
vlan_cidr_v4: Optional[str] = None,
vlan_gateway_ip_v4: Optional[str] = None,
vlan_id: Optional[int] = None,
vlan_physical_interface: Optional[str] = None)
func NewNetwork(ctx *Context, name string, args NetworkArgs, opts ...ResourceOption) (*Network, error)
public Network(string name, NetworkArgs args, CustomResourceOptions? opts = null)
public Network(String name, NetworkArgs args)
public Network(String name, NetworkArgs args, CustomResourceOptions options)
type: civo:Network
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 NetworkArgs
- 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 NetworkArgs
- 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 NetworkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkArgs
- 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 networkResource = new Civo.Network("networkResource", new()
{
Label = "string",
CidrV4 = "string",
NameserversV4s = new[]
{
"string",
},
Region = "string",
VlanAllocationPoolV4End = "string",
VlanAllocationPoolV4Start = "string",
VlanCidrV4 = "string",
VlanGatewayIpV4 = "string",
VlanId = 0,
VlanPhysicalInterface = "string",
});
example, err := civo.NewNetwork(ctx, "networkResource", &civo.NetworkArgs{
Label: pulumi.String("string"),
CidrV4: pulumi.String("string"),
NameserversV4s: pulumi.StringArray{
pulumi.String("string"),
},
Region: pulumi.String("string"),
VlanAllocationPoolV4End: pulumi.String("string"),
VlanAllocationPoolV4Start: pulumi.String("string"),
VlanCidrV4: pulumi.String("string"),
VlanGatewayIpV4: pulumi.String("string"),
VlanId: pulumi.Int(0),
VlanPhysicalInterface: pulumi.String("string"),
})
var networkResource = new Network("networkResource", NetworkArgs.builder()
.label("string")
.cidrV4("string")
.nameserversV4s("string")
.region("string")
.vlanAllocationPoolV4End("string")
.vlanAllocationPoolV4Start("string")
.vlanCidrV4("string")
.vlanGatewayIpV4("string")
.vlanId(0)
.vlanPhysicalInterface("string")
.build());
network_resource = civo.Network("networkResource",
label="string",
cidr_v4="string",
nameservers_v4s=["string"],
region="string",
vlan_allocation_pool_v4_end="string",
vlan_allocation_pool_v4_start="string",
vlan_cidr_v4="string",
vlan_gateway_ip_v4="string",
vlan_id=0,
vlan_physical_interface="string")
const networkResource = new civo.Network("networkResource", {
label: "string",
cidrV4: "string",
nameserversV4s: ["string"],
region: "string",
vlanAllocationPoolV4End: "string",
vlanAllocationPoolV4Start: "string",
vlanCidrV4: "string",
vlanGatewayIpV4: "string",
vlanId: 0,
vlanPhysicalInterface: "string",
});
type: civo:Network
properties:
cidrV4: string
label: string
nameserversV4s:
- string
region: string
vlanAllocationPoolV4End: string
vlanAllocationPoolV4Start: string
vlanCidrV4: string
vlanGatewayIpV4: string
vlanId: 0
vlanPhysicalInterface: string
Network 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 Network resource accepts the following input properties:
- Label string
- Name for the network
- Cidr
V4 string - The CIDR block for the network
- Nameservers
V4s List<string> - List of nameservers for the network
- Region string
- The region of the network
- Vlan
Allocation stringPool V4End - End of the IPv4 allocation pool for VLAN
- Vlan
Allocation stringPool V4Start - Start of the IPv4 allocation pool for VLAN
- Vlan
Cidr stringV4 - CIDR for VLAN IPv4
- Vlan
Gateway stringIp V4 - Gateway IP for VLAN IPv4
- Vlan
Id int - VLAN ID for the network
- Vlan
Physical stringInterface - Physical interface for VLAN
- Label string
- Name for the network
- Cidr
V4 string - The CIDR block for the network
- Nameservers
V4s []string - List of nameservers for the network
- Region string
- The region of the network
- Vlan
Allocation stringPool V4End - End of the IPv4 allocation pool for VLAN
- Vlan
Allocation stringPool V4Start - Start of the IPv4 allocation pool for VLAN
- Vlan
Cidr stringV4 - CIDR for VLAN IPv4
- Vlan
Gateway stringIp V4 - Gateway IP for VLAN IPv4
- Vlan
Id int - VLAN ID for the network
- Vlan
Physical stringInterface - Physical interface for VLAN
- label String
- Name for the network
- cidr
V4 String - The CIDR block for the network
- nameservers
V4s List<String> - List of nameservers for the network
- region String
- The region of the network
- vlan
Allocation StringPool V4End - End of the IPv4 allocation pool for VLAN
- vlan
Allocation StringPool V4Start - Start of the IPv4 allocation pool for VLAN
- vlan
Cidr StringV4 - CIDR for VLAN IPv4
- vlan
Gateway StringIp V4 - Gateway IP for VLAN IPv4
- vlan
Id Integer - VLAN ID for the network
- vlan
Physical StringInterface - Physical interface for VLAN
- label string
- Name for the network
- cidr
V4 string - The CIDR block for the network
- nameservers
V4s string[] - List of nameservers for the network
- region string
- The region of the network
- vlan
Allocation stringPool V4End - End of the IPv4 allocation pool for VLAN
- vlan
Allocation stringPool V4Start - Start of the IPv4 allocation pool for VLAN
- vlan
Cidr stringV4 - CIDR for VLAN IPv4
- vlan
Gateway stringIp V4 - Gateway IP for VLAN IPv4
- vlan
Id number - VLAN ID for the network
- vlan
Physical stringInterface - Physical interface for VLAN
- label str
- Name for the network
- cidr_
v4 str - The CIDR block for the network
- nameservers_
v4s Sequence[str] - List of nameservers for the network
- region str
- The region of the network
- vlan_
allocation_ strpool_ v4_ end - End of the IPv4 allocation pool for VLAN
- vlan_
allocation_ strpool_ v4_ start - Start of the IPv4 allocation pool for VLAN
- vlan_
cidr_ strv4 - CIDR for VLAN IPv4
- vlan_
gateway_ strip_ v4 - Gateway IP for VLAN IPv4
- vlan_
id int - VLAN ID for the network
- vlan_
physical_ strinterface - Physical interface for VLAN
- label String
- Name for the network
- cidr
V4 String - The CIDR block for the network
- nameservers
V4s List<String> - List of nameservers for the network
- region String
- The region of the network
- vlan
Allocation StringPool V4End - End of the IPv4 allocation pool for VLAN
- vlan
Allocation StringPool V4Start - Start of the IPv4 allocation pool for VLAN
- vlan
Cidr StringV4 - CIDR for VLAN IPv4
- vlan
Gateway StringIp V4 - Gateway IP for VLAN IPv4
- vlan
Id Number - VLAN ID for the network
- vlan
Physical StringInterface - Physical interface for VLAN
Outputs
All input properties are implicitly available as output properties. Additionally, the Network resource produces the following output properties:
Look up Existing Network Resource
Get an existing Network 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?: NetworkState, opts?: CustomResourceOptions): Network
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cidr_v4: Optional[str] = None,
default: Optional[bool] = None,
label: Optional[str] = None,
name: Optional[str] = None,
nameservers_v4s: Optional[Sequence[str]] = None,
region: Optional[str] = None,
vlan_allocation_pool_v4_end: Optional[str] = None,
vlan_allocation_pool_v4_start: Optional[str] = None,
vlan_cidr_v4: Optional[str] = None,
vlan_gateway_ip_v4: Optional[str] = None,
vlan_id: Optional[int] = None,
vlan_physical_interface: Optional[str] = None) -> Network
func GetNetwork(ctx *Context, name string, id IDInput, state *NetworkState, opts ...ResourceOption) (*Network, error)
public static Network Get(string name, Input<string> id, NetworkState? state, CustomResourceOptions? opts = null)
public static Network get(String name, Output<String> id, NetworkState 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.
- Cidr
V4 string - The CIDR block for the network
- Default bool
- If the network is default, this will be
true
- Label string
- Name for the network
- Name string
- The name of the network
- Nameservers
V4s List<string> - List of nameservers for the network
- Region string
- The region of the network
- Vlan
Allocation stringPool V4End - End of the IPv4 allocation pool for VLAN
- Vlan
Allocation stringPool V4Start - Start of the IPv4 allocation pool for VLAN
- Vlan
Cidr stringV4 - CIDR for VLAN IPv4
- Vlan
Gateway stringIp V4 - Gateway IP for VLAN IPv4
- Vlan
Id int - VLAN ID for the network
- Vlan
Physical stringInterface - Physical interface for VLAN
- Cidr
V4 string - The CIDR block for the network
- Default bool
- If the network is default, this will be
true
- Label string
- Name for the network
- Name string
- The name of the network
- Nameservers
V4s []string - List of nameservers for the network
- Region string
- The region of the network
- Vlan
Allocation stringPool V4End - End of the IPv4 allocation pool for VLAN
- Vlan
Allocation stringPool V4Start - Start of the IPv4 allocation pool for VLAN
- Vlan
Cidr stringV4 - CIDR for VLAN IPv4
- Vlan
Gateway stringIp V4 - Gateway IP for VLAN IPv4
- Vlan
Id int - VLAN ID for the network
- Vlan
Physical stringInterface - Physical interface for VLAN
- cidr
V4 String - The CIDR block for the network
- default_ Boolean
- If the network is default, this will be
true
- label String
- Name for the network
- name String
- The name of the network
- nameservers
V4s List<String> - List of nameservers for the network
- region String
- The region of the network
- vlan
Allocation StringPool V4End - End of the IPv4 allocation pool for VLAN
- vlan
Allocation StringPool V4Start - Start of the IPv4 allocation pool for VLAN
- vlan
Cidr StringV4 - CIDR for VLAN IPv4
- vlan
Gateway StringIp V4 - Gateway IP for VLAN IPv4
- vlan
Id Integer - VLAN ID for the network
- vlan
Physical StringInterface - Physical interface for VLAN
- cidr
V4 string - The CIDR block for the network
- default boolean
- If the network is default, this will be
true
- label string
- Name for the network
- name string
- The name of the network
- nameservers
V4s string[] - List of nameservers for the network
- region string
- The region of the network
- vlan
Allocation stringPool V4End - End of the IPv4 allocation pool for VLAN
- vlan
Allocation stringPool V4Start - Start of the IPv4 allocation pool for VLAN
- vlan
Cidr stringV4 - CIDR for VLAN IPv4
- vlan
Gateway stringIp V4 - Gateway IP for VLAN IPv4
- vlan
Id number - VLAN ID for the network
- vlan
Physical stringInterface - Physical interface for VLAN
- cidr_
v4 str - The CIDR block for the network
- default bool
- If the network is default, this will be
true
- label str
- Name for the network
- name str
- The name of the network
- nameservers_
v4s Sequence[str] - List of nameservers for the network
- region str
- The region of the network
- vlan_
allocation_ strpool_ v4_ end - End of the IPv4 allocation pool for VLAN
- vlan_
allocation_ strpool_ v4_ start - Start of the IPv4 allocation pool for VLAN
- vlan_
cidr_ strv4 - CIDR for VLAN IPv4
- vlan_
gateway_ strip_ v4 - Gateway IP for VLAN IPv4
- vlan_
id int - VLAN ID for the network
- vlan_
physical_ strinterface - Physical interface for VLAN
- cidr
V4 String - The CIDR block for the network
- default Boolean
- If the network is default, this will be
true
- label String
- Name for the network
- name String
- The name of the network
- nameservers
V4s List<String> - List of nameservers for the network
- region String
- The region of the network
- vlan
Allocation StringPool V4End - End of the IPv4 allocation pool for VLAN
- vlan
Allocation StringPool V4Start - Start of the IPv4 allocation pool for VLAN
- vlan
Cidr StringV4 - CIDR for VLAN IPv4
- vlan
Gateway StringIp V4 - Gateway IP for VLAN IPv4
- vlan
Id Number - VLAN ID for the network
- vlan
Physical StringInterface - Physical interface for VLAN
Import
using ID
$ pulumi import civo:index/network:Network custom_net b8ecd2ab-2267-4a5e-8692-cbf1d32583e3
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Civo pulumi/pulumi-civo
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
civo
Terraform Provider.