DeviceManagedNetworks

class DeviceManagedNetworks : KotlinCustomResource

Provides a Cloudflare Device Managed Network resource. Device managed networks allow for building location-aware device settings policies.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const managedNetworks = new cloudflare.DeviceManagedNetworks("managed_networks", {
accountId: "f037e56e89293a057740de681ac9abbe",
name: "managed-network-1",
type: "tls",
config: {
tlsSockaddr: "foobar:1234",
sha256: "b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c",
},
});
import pulumi
import pulumi_cloudflare as cloudflare
managed_networks = cloudflare.DeviceManagedNetworks("managed_networks",
account_id="f037e56e89293a057740de681ac9abbe",
name="managed-network-1",
type="tls",
config={
"tls_sockaddr": "foobar:1234",
"sha256": "b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c",
})
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var managedNetworks = new Cloudflare.DeviceManagedNetworks("managed_networks", new()
{
AccountId = "f037e56e89293a057740de681ac9abbe",
Name = "managed-network-1",
Type = "tls",
Config = new Cloudflare.Inputs.DeviceManagedNetworksConfigArgs
{
TlsSockaddr = "foobar:1234",
Sha256 = "b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c",
},
});
});
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.NewDeviceManagedNetworks(ctx, "managed_networks", &cloudflare.DeviceManagedNetworksArgs{
AccountId: pulumi.String("f037e56e89293a057740de681ac9abbe"),
Name: pulumi.String("managed-network-1"),
Type: pulumi.String("tls"),
Config: &cloudflare.DeviceManagedNetworksConfigArgs{
TlsSockaddr: pulumi.String("foobar:1234"),
Sha256: pulumi.String("b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.DeviceManagedNetworks;
import com.pulumi.cloudflare.DeviceManagedNetworksArgs;
import com.pulumi.cloudflare.inputs.DeviceManagedNetworksConfigArgs;
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 managedNetworks = new DeviceManagedNetworks("managedNetworks", DeviceManagedNetworksArgs.builder()
.accountId("f037e56e89293a057740de681ac9abbe")
.name("managed-network-1")
.type("tls")
.config(DeviceManagedNetworksConfigArgs.builder()
.tlsSockaddr("foobar:1234")
.sha256("b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c")
.build())
.build());
}
}
resources:
managedNetworks:
type: cloudflare:DeviceManagedNetworks
name: managed_networks
properties:
accountId: f037e56e89293a057740de681ac9abbe
name: managed-network-1
type: tls
config:
tlsSockaddr: foobar:1234
sha256: b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c

Import

$ pulumi import cloudflare:index/deviceManagedNetworks:DeviceManagedNetworks example <account_id>/<device_managed_networks_id>

Properties

Link copied to clipboard
val accountId: Output<String>

The account identifier to target for the resource.

Link copied to clipboard

The configuration containing information for the WARP client to detect the managed network.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

The name of the Device Managed Network. Must be unique.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val type: Output<String>

The type of Device Managed Network. Available values: tls.

Link copied to clipboard
val urn: Output<String>