Zero Trust Gateway Proxy Endpoint Args
data class ZeroTrustGatewayProxyEndpointArgs(val accountId: Output<String>? = null, val ips: Output<List<String>>? = null, val name: Output<String>? = null) : ConvertibleToJava<ZeroTrustGatewayProxyEndpointArgs>
Provides a Cloudflare Teams Proxy Endpoint resource. Teams Proxy Endpoints are used for pointing proxy clients at Cloudflare Secure Gateway.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const example = new cloudflare.ZeroTrustGatewayProxyEndpoint("example", {
accountId: "f037e56e89293a057740de681ac9abbe",
name: "office",
ips: ["192.0.2.0/24"],
});
Content copied to clipboard
import pulumi
import pulumi_cloudflare as cloudflare
example = cloudflare.ZeroTrustGatewayProxyEndpoint("example",
account_id="f037e56e89293a057740de681ac9abbe",
name="office",
ips=["192.0.2.0/24"])
Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var example = new Cloudflare.ZeroTrustGatewayProxyEndpoint("example", new()
{
AccountId = "f037e56e89293a057740de681ac9abbe",
Name = "office",
Ips = new[]
{
"192.0.2.0/24",
},
});
});
Content copied to clipboard
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.NewZeroTrustGatewayProxyEndpoint(ctx, "example", &cloudflare.ZeroTrustGatewayProxyEndpointArgs{
AccountId: pulumi.String("f037e56e89293a057740de681ac9abbe"),
Name: pulumi.String("office"),
Ips: pulumi.StringArray{
pulumi.String("192.0.2.0/24"),
},
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.ZeroTrustGatewayProxyEndpoint;
import com.pulumi.cloudflare.ZeroTrustGatewayProxyEndpointArgs;
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 ZeroTrustGatewayProxyEndpoint("example", ZeroTrustGatewayProxyEndpointArgs.builder()
.accountId("f037e56e89293a057740de681ac9abbe")
.name("office")
.ips("192.0.2.0/24")
.build());
}
}
Content copied to clipboard
resources:
example:
type: cloudflare:ZeroTrustGatewayProxyEndpoint
properties:
accountId: f037e56e89293a057740de681ac9abbe
name: office
ips:
- 192.0.2.0/24
Content copied to clipboard
Import
$ pulumi import cloudflare:index/zeroTrustGatewayProxyEndpoint:ZeroTrustGatewayProxyEndpoint example <account_id>/<proxy_endpoint_id>
Content copied to clipboard