cloudflare.TeamsProxyEndpoint
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 TeamsProxyEndpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TeamsProxyEndpoint(name: string, args: TeamsProxyEndpointArgs, opts?: CustomResourceOptions);
@overload
def TeamsProxyEndpoint(resource_name: str,
args: TeamsProxyEndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TeamsProxyEndpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
ips: Optional[Sequence[str]] = None,
name: Optional[str] = None)
func NewTeamsProxyEndpoint(ctx *Context, name string, args TeamsProxyEndpointArgs, opts ...ResourceOption) (*TeamsProxyEndpoint, error)
public TeamsProxyEndpoint(string name, TeamsProxyEndpointArgs args, CustomResourceOptions? opts = null)
public TeamsProxyEndpoint(String name, TeamsProxyEndpointArgs args)
public TeamsProxyEndpoint(String name, TeamsProxyEndpointArgs args, CustomResourceOptions options)
type: cloudflare:TeamsProxyEndpoint
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 TeamsProxyEndpointArgs
- 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 TeamsProxyEndpointArgs
- 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 TeamsProxyEndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TeamsProxyEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TeamsProxyEndpointArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
TeamsProxyEndpoint 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 TeamsProxyEndpoint 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 TeamsProxyEndpoint 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 TeamsProxyEndpoint Resource
Get an existing TeamsProxyEndpoint 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?: TeamsProxyEndpointState, opts?: CustomResourceOptions): TeamsProxyEndpoint
@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) -> TeamsProxyEndpoint
func GetTeamsProxyEndpoint(ctx *Context, name string, id IDInput, state *TeamsProxyEndpointState, opts ...ResourceOption) (*TeamsProxyEndpoint, error)
public static TeamsProxyEndpoint Get(string name, Input<string> id, TeamsProxyEndpointState? state, CustomResourceOptions? opts = null)
public static TeamsProxyEndpoint get(String name, Output<String> id, TeamsProxyEndpointState state, CustomResourceOptions options)
resources: _: type: cloudflare:TeamsProxyEndpoint 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/teamsProxyEndpoint:TeamsProxyEndpoint 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.