cloudflare.ZeroTrustTunnelVirtualNetwork
Explore with Pulumi AI
Provides a resource, that manages Cloudflare tunnel virtual networks for Zero Trust. Tunnel virtual networks are used for segregation of Tunnel IP Routes via Virtualized Networks to handle overlapping private IPs in your origins.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const example = new cloudflare.ZeroTrustTunnelVirtualNetwork("example", {
accountId: "f037e56e89293a057740de681ac9abbe",
name: "vnet-for-documentation",
comment: "New tunnel virtual network for documentation",
});
import pulumi
import pulumi_cloudflare as cloudflare
example = cloudflare.ZeroTrustTunnelVirtualNetwork("example",
account_id="f037e56e89293a057740de681ac9abbe",
name="vnet-for-documentation",
comment="New tunnel virtual network for documentation")
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v5/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.NewZeroTrustTunnelVirtualNetwork(ctx, "example", &cloudflare.ZeroTrustTunnelVirtualNetworkArgs{
AccountId: pulumi.String("f037e56e89293a057740de681ac9abbe"),
Name: pulumi.String("vnet-for-documentation"),
Comment: pulumi.String("New tunnel virtual network for documentation"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var example = new Cloudflare.ZeroTrustTunnelVirtualNetwork("example", new()
{
AccountId = "f037e56e89293a057740de681ac9abbe",
Name = "vnet-for-documentation",
Comment = "New tunnel virtual network for documentation",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.ZeroTrustTunnelVirtualNetwork;
import com.pulumi.cloudflare.ZeroTrustTunnelVirtualNetworkArgs;
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 example = new ZeroTrustTunnelVirtualNetwork("example", ZeroTrustTunnelVirtualNetworkArgs.builder()
.accountId("f037e56e89293a057740de681ac9abbe")
.name("vnet-for-documentation")
.comment("New tunnel virtual network for documentation")
.build());
}
}
resources:
example:
type: cloudflare:ZeroTrustTunnelVirtualNetwork
properties:
accountId: f037e56e89293a057740de681ac9abbe
name: vnet-for-documentation
comment: New tunnel virtual network for documentation
Create ZeroTrustTunnelVirtualNetwork Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ZeroTrustTunnelVirtualNetwork(name: string, args: ZeroTrustTunnelVirtualNetworkArgs, opts?: CustomResourceOptions);
@overload
def ZeroTrustTunnelVirtualNetwork(resource_name: str,
args: ZeroTrustTunnelVirtualNetworkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ZeroTrustTunnelVirtualNetwork(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
name: Optional[str] = None,
comment: Optional[str] = None,
is_default_network: Optional[bool] = None)
func NewZeroTrustTunnelVirtualNetwork(ctx *Context, name string, args ZeroTrustTunnelVirtualNetworkArgs, opts ...ResourceOption) (*ZeroTrustTunnelVirtualNetwork, error)
public ZeroTrustTunnelVirtualNetwork(string name, ZeroTrustTunnelVirtualNetworkArgs args, CustomResourceOptions? opts = null)
public ZeroTrustTunnelVirtualNetwork(String name, ZeroTrustTunnelVirtualNetworkArgs args)
public ZeroTrustTunnelVirtualNetwork(String name, ZeroTrustTunnelVirtualNetworkArgs args, CustomResourceOptions options)
type: cloudflare:ZeroTrustTunnelVirtualNetwork
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 ZeroTrustTunnelVirtualNetworkArgs
- 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 ZeroTrustTunnelVirtualNetworkArgs
- 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 ZeroTrustTunnelVirtualNetworkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ZeroTrustTunnelVirtualNetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ZeroTrustTunnelVirtualNetworkArgs
- 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 zeroTrustTunnelVirtualNetworkResource = new Cloudflare.ZeroTrustTunnelVirtualNetwork("zeroTrustTunnelVirtualNetworkResource", new()
{
AccountId = "string",
Name = "string",
Comment = "string",
IsDefaultNetwork = false,
});
example, err := cloudflare.NewZeroTrustTunnelVirtualNetwork(ctx, "zeroTrustTunnelVirtualNetworkResource", &cloudflare.ZeroTrustTunnelVirtualNetworkArgs{
AccountId: pulumi.String("string"),
Name: pulumi.String("string"),
Comment: pulumi.String("string"),
IsDefaultNetwork: pulumi.Bool(false),
})
var zeroTrustTunnelVirtualNetworkResource = new ZeroTrustTunnelVirtualNetwork("zeroTrustTunnelVirtualNetworkResource", ZeroTrustTunnelVirtualNetworkArgs.builder()
.accountId("string")
.name("string")
.comment("string")
.isDefaultNetwork(false)
.build());
zero_trust_tunnel_virtual_network_resource = cloudflare.ZeroTrustTunnelVirtualNetwork("zeroTrustTunnelVirtualNetworkResource",
account_id="string",
name="string",
comment="string",
is_default_network=False)
const zeroTrustTunnelVirtualNetworkResource = new cloudflare.ZeroTrustTunnelVirtualNetwork("zeroTrustTunnelVirtualNetworkResource", {
accountId: "string",
name: "string",
comment: "string",
isDefaultNetwork: false,
});
type: cloudflare:ZeroTrustTunnelVirtualNetwork
properties:
accountId: string
comment: string
isDefaultNetwork: false
name: string
ZeroTrustTunnelVirtualNetwork 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 ZeroTrustTunnelVirtualNetwork resource accepts the following input properties:
- Account
Id string - The account identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- Name string
- A user-friendly name chosen when the virtual network is created.
- Comment string
- Description of the tunnel virtual network.
- Is
Default boolNetwork - Whether this virtual network is the default one for the account. This means IP Routes belong to this virtual network and Teams Clients in the account route through this virtual network, unless specified otherwise for each case.
- Account
Id string - The account identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- Name string
- A user-friendly name chosen when the virtual network is created.
- Comment string
- Description of the tunnel virtual network.
- Is
Default boolNetwork - Whether this virtual network is the default one for the account. This means IP Routes belong to this virtual network and Teams Clients in the account route through this virtual network, unless specified otherwise for each case.
- account
Id String - The account identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- name String
- A user-friendly name chosen when the virtual network is created.
- comment String
- Description of the tunnel virtual network.
- is
Default BooleanNetwork - Whether this virtual network is the default one for the account. This means IP Routes belong to this virtual network and Teams Clients in the account route through this virtual network, unless specified otherwise for each case.
- account
Id string - The account identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- name string
- A user-friendly name chosen when the virtual network is created.
- comment string
- Description of the tunnel virtual network.
- is
Default booleanNetwork - Whether this virtual network is the default one for the account. This means IP Routes belong to this virtual network and Teams Clients in the account route through this virtual network, unless specified otherwise for each case.
- account_
id str - The account identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- name str
- A user-friendly name chosen when the virtual network is created.
- comment str
- Description of the tunnel virtual network.
- is_
default_ boolnetwork - Whether this virtual network is the default one for the account. This means IP Routes belong to this virtual network and Teams Clients in the account route through this virtual network, unless specified otherwise for each case.
- account
Id String - The account identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- name String
- A user-friendly name chosen when the virtual network is created.
- comment String
- Description of the tunnel virtual network.
- is
Default BooleanNetwork - Whether this virtual network is the default one for the account. This means IP Routes belong to this virtual network and Teams Clients in the account route through this virtual network, unless specified otherwise for each case.
Outputs
All input properties are implicitly available as output properties. Additionally, the ZeroTrustTunnelVirtualNetwork 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 ZeroTrustTunnelVirtualNetwork Resource
Get an existing ZeroTrustTunnelVirtualNetwork 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?: ZeroTrustTunnelVirtualNetworkState, opts?: CustomResourceOptions): ZeroTrustTunnelVirtualNetwork
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
comment: Optional[str] = None,
is_default_network: Optional[bool] = None,
name: Optional[str] = None) -> ZeroTrustTunnelVirtualNetwork
func GetZeroTrustTunnelVirtualNetwork(ctx *Context, name string, id IDInput, state *ZeroTrustTunnelVirtualNetworkState, opts ...ResourceOption) (*ZeroTrustTunnelVirtualNetwork, error)
public static ZeroTrustTunnelVirtualNetwork Get(string name, Input<string> id, ZeroTrustTunnelVirtualNetworkState? state, CustomResourceOptions? opts = null)
public static ZeroTrustTunnelVirtualNetwork get(String name, Output<String> id, ZeroTrustTunnelVirtualNetworkState 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.
- Account
Id string - The account identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- Comment string
- Description of the tunnel virtual network.
- Is
Default boolNetwork - Whether this virtual network is the default one for the account. This means IP Routes belong to this virtual network and Teams Clients in the account route through this virtual network, unless specified otherwise for each case.
- Name string
- A user-friendly name chosen when the virtual network is created.
- Account
Id string - The account identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- Comment string
- Description of the tunnel virtual network.
- Is
Default boolNetwork - Whether this virtual network is the default one for the account. This means IP Routes belong to this virtual network and Teams Clients in the account route through this virtual network, unless specified otherwise for each case.
- Name string
- A user-friendly name chosen when the virtual network is created.
- account
Id String - The account identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- comment String
- Description of the tunnel virtual network.
- is
Default BooleanNetwork - Whether this virtual network is the default one for the account. This means IP Routes belong to this virtual network and Teams Clients in the account route through this virtual network, unless specified otherwise for each case.
- name String
- A user-friendly name chosen when the virtual network is created.
- account
Id string - The account identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- comment string
- Description of the tunnel virtual network.
- is
Default booleanNetwork - Whether this virtual network is the default one for the account. This means IP Routes belong to this virtual network and Teams Clients in the account route through this virtual network, unless specified otherwise for each case.
- name string
- A user-friendly name chosen when the virtual network is created.
- account_
id str - The account identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- comment str
- Description of the tunnel virtual network.
- is_
default_ boolnetwork - Whether this virtual network is the default one for the account. This means IP Routes belong to this virtual network and Teams Clients in the account route through this virtual network, unless specified otherwise for each case.
- name str
- A user-friendly name chosen when the virtual network is created.
- account
Id String - The account identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- comment String
- Description of the tunnel virtual network.
- is
Default BooleanNetwork - Whether this virtual network is the default one for the account. This means IP Routes belong to this virtual network and Teams Clients in the account route through this virtual network, unless specified otherwise for each case.
- name String
- A user-friendly name chosen when the virtual network is created.
Import
$ pulumi import cloudflare:index/zeroTrustTunnelVirtualNetwork:ZeroTrustTunnelVirtualNetwork example <account_id>/<vnet_id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflare
Terraform Provider.