cloudflare.ZeroTrustGatewayProxyEndpoint
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleZeroTrustGatewayProxyEndpoint = new cloudflare.ZeroTrustGatewayProxyEndpoint("example_zero_trust_gateway_proxy_endpoint", {
accountId: "699d98642c564d2e855e9661899b7252",
ips: ["192.0.2.1/32"],
name: "Devops team",
});
import pulumi
import pulumi_cloudflare as cloudflare
example_zero_trust_gateway_proxy_endpoint = cloudflare.ZeroTrustGatewayProxyEndpoint("example_zero_trust_gateway_proxy_endpoint",
account_id="699d98642c564d2e855e9661899b7252",
ips=["192.0.2.1/32"],
name="Devops team")
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.NewZeroTrustGatewayProxyEndpoint(ctx, "example_zero_trust_gateway_proxy_endpoint", &cloudflare.ZeroTrustGatewayProxyEndpointArgs{
AccountId: pulumi.String("699d98642c564d2e855e9661899b7252"),
Ips: pulumi.StringArray{
pulumi.String("192.0.2.1/32"),
},
Name: pulumi.String("Devops team"),
})
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 exampleZeroTrustGatewayProxyEndpoint = new Cloudflare.ZeroTrustGatewayProxyEndpoint("example_zero_trust_gateway_proxy_endpoint", new()
{
AccountId = "699d98642c564d2e855e9661899b7252",
Ips = new[]
{
"192.0.2.1/32",
},
Name = "Devops team",
});
});
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 exampleZeroTrustGatewayProxyEndpoint = new ZeroTrustGatewayProxyEndpoint("exampleZeroTrustGatewayProxyEndpoint", ZeroTrustGatewayProxyEndpointArgs.builder()
.accountId("699d98642c564d2e855e9661899b7252")
.ips("192.0.2.1/32")
.name("Devops team")
.build());
}
}
resources:
exampleZeroTrustGatewayProxyEndpoint:
type: cloudflare:ZeroTrustGatewayProxyEndpoint
name: example_zero_trust_gateway_proxy_endpoint
properties:
accountId: 699d98642c564d2e855e9661899b7252
ips:
- 192.0.2.1/32
name: Devops team
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 - ips Sequence[str]
- A list of CIDRs to restrict ingress connections.
- name str
- The name of the proxy endpoint.
Outputs
All input properties are implicitly available as output properties. Additionally, the ZeroTrustGatewayProxyEndpoint resource produces the following output properties:
- created_
at str - id str
- The provider-assigned unique ID for this managed resource.
- subdomain str
- The subdomain to be used as the destination in the proxy client.
- updated_
at str
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,
created_at: Optional[str] = None,
ips: Optional[Sequence[str]] = None,
name: Optional[str] = None,
subdomain: Optional[str] = None,
updated_at: 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)
resources: _: type: cloudflare:ZeroTrustGatewayProxyEndpoint get: id: ${id}
- 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 - created_
at str - ips Sequence[str]
- A list of CIDRs to restrict ingress connections.
- name str
- The name of the proxy endpoint.
- subdomain str
- The subdomain to be used as the destination in the proxy client.
- updated_
at str
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.