Cloudflare v6.1.2 published on Monday, Apr 28, 2025 by Pulumi
cloudflare.getZeroTrustTunnelCloudflaredVirtualNetwork
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleZeroTrustTunnelCloudflaredVirtualNetwork = cloudflare.getZeroTrustTunnelCloudflaredVirtualNetwork({
accountId: "699d98642c564d2e855e9661899b7252",
virtualNetworkId: "f70ff985-a4ef-4643-bbbc-4a0ed4fc8415",
});
import pulumi
import pulumi_cloudflare as cloudflare
example_zero_trust_tunnel_cloudflared_virtual_network = cloudflare.get_zero_trust_tunnel_cloudflared_virtual_network(account_id="699d98642c564d2e855e9661899b7252",
virtual_network_id="f70ff985-a4ef-4643-bbbc-4a0ed4fc8415")
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.LookupZeroTrustTunnelCloudflaredVirtualNetwork(ctx, &cloudflare.LookupZeroTrustTunnelCloudflaredVirtualNetworkArgs{
AccountId: "699d98642c564d2e855e9661899b7252",
VirtualNetworkId: pulumi.StringRef("f70ff985-a4ef-4643-bbbc-4a0ed4fc8415"),
}, nil)
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 exampleZeroTrustTunnelCloudflaredVirtualNetwork = Cloudflare.GetZeroTrustTunnelCloudflaredVirtualNetwork.Invoke(new()
{
AccountId = "699d98642c564d2e855e9661899b7252",
VirtualNetworkId = "f70ff985-a4ef-4643-bbbc-4a0ed4fc8415",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.CloudflareFunctions;
import com.pulumi.cloudflare.inputs.GetZeroTrustTunnelCloudflaredVirtualNetworkArgs;
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 exampleZeroTrustTunnelCloudflaredVirtualNetwork = CloudflareFunctions.getZeroTrustTunnelCloudflaredVirtualNetwork(GetZeroTrustTunnelCloudflaredVirtualNetworkArgs.builder()
.accountId("699d98642c564d2e855e9661899b7252")
.virtualNetworkId("f70ff985-a4ef-4643-bbbc-4a0ed4fc8415")
.build());
}
}
variables:
exampleZeroTrustTunnelCloudflaredVirtualNetwork:
fn::invoke:
function: cloudflare:getZeroTrustTunnelCloudflaredVirtualNetwork
arguments:
accountId: 699d98642c564d2e855e9661899b7252
virtualNetworkId: f70ff985-a4ef-4643-bbbc-4a0ed4fc8415
Using getZeroTrustTunnelCloudflaredVirtualNetwork
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 getZeroTrustTunnelCloudflaredVirtualNetwork(args: GetZeroTrustTunnelCloudflaredVirtualNetworkArgs, opts?: InvokeOptions): Promise<GetZeroTrustTunnelCloudflaredVirtualNetworkResult>
function getZeroTrustTunnelCloudflaredVirtualNetworkOutput(args: GetZeroTrustTunnelCloudflaredVirtualNetworkOutputArgs, opts?: InvokeOptions): Output<GetZeroTrustTunnelCloudflaredVirtualNetworkResult>
def get_zero_trust_tunnel_cloudflared_virtual_network(account_id: Optional[str] = None,
filter: Optional[GetZeroTrustTunnelCloudflaredVirtualNetworkFilter] = None,
virtual_network_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetZeroTrustTunnelCloudflaredVirtualNetworkResult
def get_zero_trust_tunnel_cloudflared_virtual_network_output(account_id: Optional[pulumi.Input[str]] = None,
filter: Optional[pulumi.Input[GetZeroTrustTunnelCloudflaredVirtualNetworkFilterArgs]] = None,
virtual_network_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetZeroTrustTunnelCloudflaredVirtualNetworkResult]
func LookupZeroTrustTunnelCloudflaredVirtualNetwork(ctx *Context, args *LookupZeroTrustTunnelCloudflaredVirtualNetworkArgs, opts ...InvokeOption) (*LookupZeroTrustTunnelCloudflaredVirtualNetworkResult, error)
func LookupZeroTrustTunnelCloudflaredVirtualNetworkOutput(ctx *Context, args *LookupZeroTrustTunnelCloudflaredVirtualNetworkOutputArgs, opts ...InvokeOption) LookupZeroTrustTunnelCloudflaredVirtualNetworkResultOutput
> Note: This function is named LookupZeroTrustTunnelCloudflaredVirtualNetwork
in the Go SDK.
public static class GetZeroTrustTunnelCloudflaredVirtualNetwork
{
public static Task<GetZeroTrustTunnelCloudflaredVirtualNetworkResult> InvokeAsync(GetZeroTrustTunnelCloudflaredVirtualNetworkArgs args, InvokeOptions? opts = null)
public static Output<GetZeroTrustTunnelCloudflaredVirtualNetworkResult> Invoke(GetZeroTrustTunnelCloudflaredVirtualNetworkInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetZeroTrustTunnelCloudflaredVirtualNetworkResult> getZeroTrustTunnelCloudflaredVirtualNetwork(GetZeroTrustTunnelCloudflaredVirtualNetworkArgs args, InvokeOptions options)
public static Output<GetZeroTrustTunnelCloudflaredVirtualNetworkResult> getZeroTrustTunnelCloudflaredVirtualNetwork(GetZeroTrustTunnelCloudflaredVirtualNetworkArgs args, InvokeOptions options)
fn::invoke:
function: cloudflare:index/getZeroTrustTunnelCloudflaredVirtualNetwork:getZeroTrustTunnelCloudflaredVirtualNetwork
arguments:
# arguments dictionary
The following arguments are supported:
- Account
Id string - Cloudflare account ID
- Filter
Get
Zero Trust Tunnel Cloudflared Virtual Network Filter - Virtual
Network stringId - UUID of the virtual network.
- Account
Id string - Cloudflare account ID
- Filter
Get
Zero Trust Tunnel Cloudflared Virtual Network Filter - Virtual
Network stringId - UUID of the virtual network.
- account
Id String - Cloudflare account ID
- filter
Get
Zero Trust Tunnel Cloudflared Virtual Network Filter - virtual
Network StringId - UUID of the virtual network.
- account
Id string - Cloudflare account ID
- filter
Get
Zero Trust Tunnel Cloudflared Virtual Network Filter - virtual
Network stringId - UUID of the virtual network.
- account_
id str - Cloudflare account ID
- filter
Get
Zero Trust Tunnel Cloudflared Virtual Network Filter - virtual_
network_ strid - UUID of the virtual network.
- account
Id String - Cloudflare account ID
- filter Property Map
- virtual
Network StringId - UUID of the virtual network.
getZeroTrustTunnelCloudflaredVirtualNetwork Result
The following output properties are available:
- Account
Id string - Cloudflare account ID
- Comment string
- Optional remark describing the virtual network.
- Created
At string - Timestamp of when the resource was created.
- Deleted
At string - Timestamp of when the resource was deleted. If
null
, the resource has not been deleted. - Id string
- UUID of the virtual network.
- Is
Default boolNetwork - If
true
, this virtual network is the default for the account. - Name string
- A user-friendly name for the virtual network.
- Filter
Get
Zero Trust Tunnel Cloudflared Virtual Network Filter - Virtual
Network stringId - UUID of the virtual network.
- Account
Id string - Cloudflare account ID
- Comment string
- Optional remark describing the virtual network.
- Created
At string - Timestamp of when the resource was created.
- Deleted
At string - Timestamp of when the resource was deleted. If
null
, the resource has not been deleted. - Id string
- UUID of the virtual network.
- Is
Default boolNetwork - If
true
, this virtual network is the default for the account. - Name string
- A user-friendly name for the virtual network.
- Filter
Get
Zero Trust Tunnel Cloudflared Virtual Network Filter - Virtual
Network stringId - UUID of the virtual network.
- account
Id String - Cloudflare account ID
- comment String
- Optional remark describing the virtual network.
- created
At String - Timestamp of when the resource was created.
- deleted
At String - Timestamp of when the resource was deleted. If
null
, the resource has not been deleted. - id String
- UUID of the virtual network.
- is
Default BooleanNetwork - If
true
, this virtual network is the default for the account. - name String
- A user-friendly name for the virtual network.
- filter
Get
Zero Trust Tunnel Cloudflared Virtual Network Filter - virtual
Network StringId - UUID of the virtual network.
- account
Id string - Cloudflare account ID
- comment string
- Optional remark describing the virtual network.
- created
At string - Timestamp of when the resource was created.
- deleted
At string - Timestamp of when the resource was deleted. If
null
, the resource has not been deleted. - id string
- UUID of the virtual network.
- is
Default booleanNetwork - If
true
, this virtual network is the default for the account. - name string
- A user-friendly name for the virtual network.
- filter
Get
Zero Trust Tunnel Cloudflared Virtual Network Filter - virtual
Network stringId - UUID of the virtual network.
- account_
id str - Cloudflare account ID
- comment str
- Optional remark describing the virtual network.
- created_
at str - Timestamp of when the resource was created.
- deleted_
at str - Timestamp of when the resource was deleted. If
null
, the resource has not been deleted. - id str
- UUID of the virtual network.
- is_
default_ boolnetwork - If
true
, this virtual network is the default for the account. - name str
- A user-friendly name for the virtual network.
- filter
Get
Zero Trust Tunnel Cloudflared Virtual Network Filter - virtual_
network_ strid - UUID of the virtual network.
- account
Id String - Cloudflare account ID
- comment String
- Optional remark describing the virtual network.
- created
At String - Timestamp of when the resource was created.
- deleted
At String - Timestamp of when the resource was deleted. If
null
, the resource has not been deleted. - id String
- UUID of the virtual network.
- is
Default BooleanNetwork - If
true
, this virtual network is the default for the account. - name String
- A user-friendly name for the virtual network.
- filter Property Map
- virtual
Network StringId - UUID of the virtual network.
Supporting Types
GetZeroTrustTunnelCloudflaredVirtualNetworkFilter
- Id string
- UUID of the virtual network.
- Is
Default bool - If
true
, only include the default virtual network. Iffalse
, exclude the default virtual network. If empty, all virtual networks will be included. - Is
Deleted bool - If
true
, only include deleted virtual networks. Iffalse
, exclude deleted virtual networks. If empty, all virtual networks will be included. - Name string
- A user-friendly name for the virtual network.
- Id string
- UUID of the virtual network.
- Is
Default bool - If
true
, only include the default virtual network. Iffalse
, exclude the default virtual network. If empty, all virtual networks will be included. - Is
Deleted bool - If
true
, only include deleted virtual networks. Iffalse
, exclude deleted virtual networks. If empty, all virtual networks will be included. - Name string
- A user-friendly name for the virtual network.
- id String
- UUID of the virtual network.
- is
Default Boolean - If
true
, only include the default virtual network. Iffalse
, exclude the default virtual network. If empty, all virtual networks will be included. - is
Deleted Boolean - If
true
, only include deleted virtual networks. Iffalse
, exclude deleted virtual networks. If empty, all virtual networks will be included. - name String
- A user-friendly name for the virtual network.
- id string
- UUID of the virtual network.
- is
Default boolean - If
true
, only include the default virtual network. Iffalse
, exclude the default virtual network. If empty, all virtual networks will be included. - is
Deleted boolean - If
true
, only include deleted virtual networks. Iffalse
, exclude deleted virtual networks. If empty, all virtual networks will be included. - name string
- A user-friendly name for the virtual network.
- id str
- UUID of the virtual network.
- is_
default bool - If
true
, only include the default virtual network. Iffalse
, exclude the default virtual network. If empty, all virtual networks will be included. - is_
deleted bool - If
true
, only include deleted virtual networks. Iffalse
, exclude deleted virtual networks. If empty, all virtual networks will be included. - name str
- A user-friendly name for the virtual network.
- id String
- UUID of the virtual network.
- is
Default Boolean - If
true
, only include the default virtual network. Iffalse
, exclude the default virtual network. If empty, all virtual networks will be included. - is
Deleted Boolean - If
true
, only include deleted virtual networks. Iffalse
, exclude deleted virtual networks. If empty, all virtual networks will be included. - name String
- A user-friendly name for the virtual network.
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflare
Terraform Provider.