Viewing docs for Cloudflare v6.13.0
published on Wednesday, Jan 21, 2026 by Pulumi
published on Wednesday, Jan 21, 2026 by Pulumi
Viewing docs for Cloudflare v6.13.0
published on Wednesday, Jan 21, 2026 by Pulumi
published on Wednesday, Jan 21, 2026 by Pulumi
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleZeroTrustTunnelCloudflaredVirtualNetworks = cloudflare.getZeroTrustTunnelCloudflaredVirtualNetworks({
accountId: "699d98642c564d2e855e9661899b7252",
id: "f70ff985-a4ef-4643-bbbc-4a0ed4fc8415",
isDefault: true,
isDefaultNetwork: true,
isDeleted: true,
name: "us-east-1-vpc",
});
import pulumi
import pulumi_cloudflare as cloudflare
example_zero_trust_tunnel_cloudflared_virtual_networks = cloudflare.get_zero_trust_tunnel_cloudflared_virtual_networks(account_id="699d98642c564d2e855e9661899b7252",
id="f70ff985-a4ef-4643-bbbc-4a0ed4fc8415",
is_default=True,
is_default_network=True,
is_deleted=True,
name="us-east-1-vpc")
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.LookupZeroTrustTunnelCloudflaredVirtualNetworks(ctx, &cloudflare.LookupZeroTrustTunnelCloudflaredVirtualNetworksArgs{
AccountId: "699d98642c564d2e855e9661899b7252",
Id: pulumi.StringRef("f70ff985-a4ef-4643-bbbc-4a0ed4fc8415"),
IsDefault: pulumi.BoolRef(true),
IsDefaultNetwork: pulumi.BoolRef(true),
IsDeleted: pulumi.BoolRef(true),
Name: pulumi.StringRef("us-east-1-vpc"),
}, 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 exampleZeroTrustTunnelCloudflaredVirtualNetworks = Cloudflare.GetZeroTrustTunnelCloudflaredVirtualNetworks.Invoke(new()
{
AccountId = "699d98642c564d2e855e9661899b7252",
Id = "f70ff985-a4ef-4643-bbbc-4a0ed4fc8415",
IsDefault = true,
IsDefaultNetwork = true,
IsDeleted = true,
Name = "us-east-1-vpc",
});
});
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.GetZeroTrustTunnelCloudflaredVirtualNetworksArgs;
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 exampleZeroTrustTunnelCloudflaredVirtualNetworks = CloudflareFunctions.getZeroTrustTunnelCloudflaredVirtualNetworks(GetZeroTrustTunnelCloudflaredVirtualNetworksArgs.builder()
.accountId("699d98642c564d2e855e9661899b7252")
.id("f70ff985-a4ef-4643-bbbc-4a0ed4fc8415")
.isDefault(true)
.isDefaultNetwork(true)
.isDeleted(true)
.name("us-east-1-vpc")
.build());
}
}
variables:
exampleZeroTrustTunnelCloudflaredVirtualNetworks:
fn::invoke:
function: cloudflare:getZeroTrustTunnelCloudflaredVirtualNetworks
arguments:
accountId: 699d98642c564d2e855e9661899b7252
id: f70ff985-a4ef-4643-bbbc-4a0ed4fc8415
isDefault: true
isDefaultNetwork: true
isDeleted: true
name: us-east-1-vpc
Using getZeroTrustTunnelCloudflaredVirtualNetworks
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 getZeroTrustTunnelCloudflaredVirtualNetworks(args: GetZeroTrustTunnelCloudflaredVirtualNetworksArgs, opts?: InvokeOptions): Promise<GetZeroTrustTunnelCloudflaredVirtualNetworksResult>
function getZeroTrustTunnelCloudflaredVirtualNetworksOutput(args: GetZeroTrustTunnelCloudflaredVirtualNetworksOutputArgs, opts?: InvokeOptions): Output<GetZeroTrustTunnelCloudflaredVirtualNetworksResult>def get_zero_trust_tunnel_cloudflared_virtual_networks(account_id: Optional[str] = None,
id: Optional[str] = None,
is_default: Optional[bool] = None,
is_default_network: Optional[bool] = None,
is_deleted: Optional[bool] = None,
max_items: Optional[int] = None,
name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetZeroTrustTunnelCloudflaredVirtualNetworksResult
def get_zero_trust_tunnel_cloudflared_virtual_networks_output(account_id: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
is_default: Optional[pulumi.Input[bool]] = None,
is_default_network: Optional[pulumi.Input[bool]] = None,
is_deleted: Optional[pulumi.Input[bool]] = None,
max_items: Optional[pulumi.Input[int]] = None,
name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetZeroTrustTunnelCloudflaredVirtualNetworksResult]func LookupZeroTrustTunnelCloudflaredVirtualNetworks(ctx *Context, args *LookupZeroTrustTunnelCloudflaredVirtualNetworksArgs, opts ...InvokeOption) (*LookupZeroTrustTunnelCloudflaredVirtualNetworksResult, error)
func LookupZeroTrustTunnelCloudflaredVirtualNetworksOutput(ctx *Context, args *LookupZeroTrustTunnelCloudflaredVirtualNetworksOutputArgs, opts ...InvokeOption) LookupZeroTrustTunnelCloudflaredVirtualNetworksResultOutput> Note: This function is named LookupZeroTrustTunnelCloudflaredVirtualNetworks in the Go SDK.
public static class GetZeroTrustTunnelCloudflaredVirtualNetworks
{
public static Task<GetZeroTrustTunnelCloudflaredVirtualNetworksResult> InvokeAsync(GetZeroTrustTunnelCloudflaredVirtualNetworksArgs args, InvokeOptions? opts = null)
public static Output<GetZeroTrustTunnelCloudflaredVirtualNetworksResult> Invoke(GetZeroTrustTunnelCloudflaredVirtualNetworksInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetZeroTrustTunnelCloudflaredVirtualNetworksResult> getZeroTrustTunnelCloudflaredVirtualNetworks(GetZeroTrustTunnelCloudflaredVirtualNetworksArgs args, InvokeOptions options)
public static Output<GetZeroTrustTunnelCloudflaredVirtualNetworksResult> getZeroTrustTunnelCloudflaredVirtualNetworks(GetZeroTrustTunnelCloudflaredVirtualNetworksArgs args, InvokeOptions options)
fn::invoke:
function: cloudflare:index/getZeroTrustTunnelCloudflaredVirtualNetworks:getZeroTrustTunnelCloudflaredVirtualNetworks
arguments:
# arguments dictionaryThe following arguments are supported:
- Account
Id string - Cloudflare account ID
- 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
Default boolNetwork - 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. - Max
Items int - Max items to fetch, default: 1000
- Name string
- A user-friendly name for the virtual network.
- Account
Id string - Cloudflare account ID
- 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
Default boolNetwork - 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. - Max
Items int - Max items to fetch, default: 1000
- Name string
- A user-friendly name for the virtual network.
- account
Id String - Cloudflare account ID
- 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
Default BooleanNetwork - 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. - max
Items Integer - Max items to fetch, default: 1000
- name String
- A user-friendly name for the virtual network.
- account
Id string - Cloudflare account ID
- 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
Default booleanNetwork - 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. - max
Items number - Max items to fetch, default: 1000
- name string
- A user-friendly name for the virtual network.
- account_
id str - Cloudflare account ID
- 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_
default_ boolnetwork - 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. - max_
items int - Max items to fetch, default: 1000
- name str
- A user-friendly name for the virtual network.
- account
Id String - Cloudflare account ID
- 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
Default BooleanNetwork - 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. - max
Items Number - Max items to fetch, default: 1000
- name String
- A user-friendly name for the virtual network.
getZeroTrustTunnelCloudflaredVirtualNetworks Result
The following output properties are available:
- Account
Id string - Cloudflare account ID
- Results
List<Get
Zero Trust Tunnel Cloudflared Virtual Networks Result> - The items returned by the data source
- 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
Default boolNetwork - 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. - Max
Items int - Max items to fetch, default: 1000
- Name string
- A user-friendly name for the virtual network.
- Account
Id string - Cloudflare account ID
- Results
[]Get
Zero Trust Tunnel Cloudflared Virtual Networks Result - The items returned by the data source
- 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
Default boolNetwork - 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. - Max
Items int - Max items to fetch, default: 1000
- Name string
- A user-friendly name for the virtual network.
- account
Id String - Cloudflare account ID
- results
List<Get
Zero Trust Tunnel Cloudflared Virtual Networks Result> - The items returned by the data source
- 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
Default BooleanNetwork - 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. - max
Items Integer - Max items to fetch, default: 1000
- name String
- A user-friendly name for the virtual network.
- account
Id string - Cloudflare account ID
- results
Get
Zero Trust Tunnel Cloudflared Virtual Networks Result[] - The items returned by the data source
- 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
Default booleanNetwork - 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. - max
Items number - Max items to fetch, default: 1000
- name string
- A user-friendly name for the virtual network.
- account_
id str - Cloudflare account ID
- results
Sequence[Get
Zero Trust Tunnel Cloudflared Virtual Networks Result] - The items returned by the data source
- 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_
default_ boolnetwork - 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. - max_
items int - Max items to fetch, default: 1000
- name str
- A user-friendly name for the virtual network.
- account
Id String - Cloudflare account ID
- results List<Property Map>
- The items returned by the data source
- 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
Default BooleanNetwork - 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. - max
Items Number - Max items to fetch, default: 1000
- name String
- A user-friendly name for the virtual network.
Supporting Types
GetZeroTrustTunnelCloudflaredVirtualNetworksResult
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflareTerraform Provider.
Viewing docs for Cloudflare v6.13.0
published on Wednesday, Jan 21, 2026 by Pulumi
published on Wednesday, Jan 21, 2026 by Pulumi
