cloudflare.ZeroTrustGatewayProxyEndpoint
Explore with Pulumi AI
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"],
});
import pulumi
import pulumi_cloudflare as cloudflare
example = cloudflare.ZeroTrustGatewayProxyEndpoint("example",
account_id="f037e56e89293a057740de681ac9abbe",
name="office",
ips=["192.0.2.0/24"])
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
})
}
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",
},
});
});
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());
}
}
resources:
example:
type: cloudflare:ZeroTrustGatewayProxyEndpoint
properties:
accountId: f037e56e89293a057740de681ac9abbe
name: office
ips:
- 192.0.2.0/24
Create ZeroTrustGatewayProxyEndpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ZeroTrustGatewayProxyEndpoint(name: string, args: ZeroTrustGatewayProxyEndpointArgs, opts?: CustomResourceOptions);
@overload
def ZeroTrustGatewayProxyEndpoint(resource_name: str,
args: ZeroTrustGatewayProxyEndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ZeroTrustGatewayProxyEndpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
ips: Optional[Sequence[str]] = None,
name: Optional[str] = None)
func NewZeroTrustGatewayProxyEndpoint(ctx *Context, name string, args ZeroTrustGatewayProxyEndpointArgs, opts ...ResourceOption) (*ZeroTrustGatewayProxyEndpoint, error)
public ZeroTrustGatewayProxyEndpoint(string name, ZeroTrustGatewayProxyEndpointArgs args, CustomResourceOptions? opts = null)
public ZeroTrustGatewayProxyEndpoint(String name, ZeroTrustGatewayProxyEndpointArgs args)
public ZeroTrustGatewayProxyEndpoint(String name, ZeroTrustGatewayProxyEndpointArgs args, CustomResourceOptions options)
type: cloudflare:ZeroTrustGatewayProxyEndpoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ZeroTrustGatewayProxyEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ZeroTrustGatewayProxyEndpointArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ZeroTrustGatewayProxyEndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ZeroTrustGatewayProxyEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ZeroTrustGatewayProxyEndpointArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var zeroTrustGatewayProxyEndpointResource = new Cloudflare.ZeroTrustGatewayProxyEndpoint("zeroTrustGatewayProxyEndpointResource", new()
{
AccountId = "string",
Ips = new[]
{
"string",
},
Name = "string",
});
example, err := cloudflare.NewZeroTrustGatewayProxyEndpoint(ctx, "zeroTrustGatewayProxyEndpointResource", &cloudflare.ZeroTrustGatewayProxyEndpointArgs{
AccountId: pulumi.String("string"),
Ips: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
})
var zeroTrustGatewayProxyEndpointResource = new ZeroTrustGatewayProxyEndpoint("zeroTrustGatewayProxyEndpointResource", ZeroTrustGatewayProxyEndpointArgs.builder()
.accountId("string")
.ips("string")
.name("string")
.build());
zero_trust_gateway_proxy_endpoint_resource = cloudflare.ZeroTrustGatewayProxyEndpoint("zeroTrustGatewayProxyEndpointResource",
account_id="string",
ips=["string"],
name="string")
const zeroTrustGatewayProxyEndpointResource = new cloudflare.ZeroTrustGatewayProxyEndpoint("zeroTrustGatewayProxyEndpointResource", {
accountId: "string",
ips: ["string"],
name: "string",
});
type: cloudflare:ZeroTrustGatewayProxyEndpoint
properties:
accountId: string
ips:
- string
name: string
ZeroTrustGatewayProxyEndpoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ZeroTrustGatewayProxyEndpoint resource accepts the following input properties:
- account_
id str - The account identifier to target for the resource.
- ips Sequence[str]
- The networks CIDRs that will be allowed to initiate proxy connections.
- name str
- Name of the teams proxy endpoint.
Outputs
All input properties are implicitly available as output properties. Additionally, the ZeroTrustGatewayProxyEndpoint resource produces the following output properties:
Look up Existing ZeroTrustGatewayProxyEndpoint Resource
Get an existing ZeroTrustGatewayProxyEndpoint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ZeroTrustGatewayProxyEndpointState, opts?: CustomResourceOptions): ZeroTrustGatewayProxyEndpoint
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
ips: Optional[Sequence[str]] = None,
name: Optional[str] = None,
subdomain: Optional[str] = None) -> ZeroTrustGatewayProxyEndpoint
func GetZeroTrustGatewayProxyEndpoint(ctx *Context, name string, id IDInput, state *ZeroTrustGatewayProxyEndpointState, opts ...ResourceOption) (*ZeroTrustGatewayProxyEndpoint, error)
public static ZeroTrustGatewayProxyEndpoint Get(string name, Input<string> id, ZeroTrustGatewayProxyEndpointState? state, CustomResourceOptions? opts = null)
public static ZeroTrustGatewayProxyEndpoint get(String name, Output<String> id, ZeroTrustGatewayProxyEndpointState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- account_
id str - The account identifier to target for the resource.
- ips Sequence[str]
- The networks CIDRs that will be allowed to initiate proxy connections.
- name str
- Name of the teams proxy endpoint.
- subdomain str
- The FQDN that proxy clients should be pointed at.
Import
$ pulumi import cloudflare:index/zeroTrustGatewayProxyEndpoint:ZeroTrustGatewayProxyEndpoint example <account_id>/<proxy_endpoint_id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflare
Terraform Provider.