TeamsProxyEndpointArgs

data class TeamsProxyEndpointArgs(val accountId: Output<String>? = null, val ips: Output<List<String>>? = null, val name: Output<String>? = null) : ConvertibleToJava<TeamsProxyEndpointArgs>

Provides a Cloudflare Teams Proxy Endpoint resource. Teams Proxy Endpoints are used for pointing proxy clients at Cloudflare Secure Gateway.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.TeamsProxyEndpoint;
import com.pulumi.cloudflare.TeamsProxyEndpointArgs;
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 TeamsProxyEndpoint("example", TeamsProxyEndpointArgs.builder()
.accountId("f037e56e89293a057740de681ac9abbe")
.ips("192.0.2.0/24")
.name("office")
.build());
}
}

Import

$ pulumi import cloudflare:index/teamsProxyEndpoint:TeamsProxyEndpoint example <account_id>/<proxy_endpoint_id>

Constructors

Link copied to clipboard
constructor(accountId: Output<String>? = null, ips: Output<List<String>>? = null, name: Output<String>? = null)

Properties

Link copied to clipboard
val accountId: Output<String>? = null

The account identifier to target for the resource.

Link copied to clipboard
val ips: Output<List<String>>? = null

The networks CIDRs that will be allowed to initiate proxy connections.

Link copied to clipboard
val name: Output<String>? = null

Name of the teams proxy endpoint.

Functions

Link copied to clipboard
open override fun toJava(): TeamsProxyEndpointArgs