cpln.Gvc
Explore with Pulumi AI
Create Gvc Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Gvc(name: string, args?: GvcArgs, opts?: CustomResourceOptions);
@overload
def Gvc(resource_name: str,
args: Optional[GvcArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Gvc(resource_name: str,
opts: Optional[ResourceOptions] = None,
controlplane_tracing: Optional[GvcControlplaneTracingArgs] = None,
description: Optional[str] = None,
domain: Optional[str] = None,
endpoint_naming_format: Optional[str] = None,
env: Optional[Mapping[str, str]] = None,
lightstep_tracing: Optional[GvcLightstepTracingArgs] = None,
load_balancer: Optional[GvcLoadBalancerArgs] = None,
locations: Optional[Sequence[str]] = None,
name: Optional[str] = None,
otel_tracing: Optional[GvcOtelTracingArgs] = None,
pull_secrets: Optional[Sequence[str]] = None,
sidecar: Optional[GvcSidecarArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewGvc(ctx *Context, name string, args *GvcArgs, opts ...ResourceOption) (*Gvc, error)
public Gvc(string name, GvcArgs? args = null, CustomResourceOptions? opts = null)
type: cpln:Gvc
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 GvcArgs
- 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 GvcArgs
- 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 GvcArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GvcArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GvcArgs
- 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 gvcResource = new Cpln.Gvc("gvcResource", new()
{
ControlplaneTracing = new Cpln.Inputs.GvcControlplaneTracingArgs
{
Sampling = 0,
CustomTags =
{
{ "string", "string" },
},
},
Description = "string",
EndpointNamingFormat = "string",
Env =
{
{ "string", "string" },
},
LightstepTracing = new Cpln.Inputs.GvcLightstepTracingArgs
{
Endpoint = "string",
Sampling = 0,
Credentials = "string",
CustomTags =
{
{ "string", "string" },
},
},
LoadBalancer = new Cpln.Inputs.GvcLoadBalancerArgs
{
Dedicated = false,
Ipset = "string",
MultiZone = new Cpln.Inputs.GvcLoadBalancerMultiZoneArgs
{
Enabled = false,
},
Redirect = new Cpln.Inputs.GvcLoadBalancerRedirectArgs
{
Class = new Cpln.Inputs.GvcLoadBalancerRedirectClassArgs
{
Status401 = "string",
Status5xx = "string",
},
},
TrustedProxies = 0,
},
Locations = new[]
{
"string",
},
Name = "string",
OtelTracing = new Cpln.Inputs.GvcOtelTracingArgs
{
Endpoint = "string",
Sampling = 0,
CustomTags =
{
{ "string", "string" },
},
},
PullSecrets = new[]
{
"string",
},
Sidecar = new Cpln.Inputs.GvcSidecarArgs
{
Envoy = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := cpln.NewGvc(ctx, "gvcResource", &cpln.GvcArgs{
ControlplaneTracing: &cpln.GvcControlplaneTracingArgs{
Sampling: pulumi.Float64(0),
CustomTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
Description: pulumi.String("string"),
EndpointNamingFormat: pulumi.String("string"),
Env: pulumi.StringMap{
"string": pulumi.String("string"),
},
LightstepTracing: &cpln.GvcLightstepTracingArgs{
Endpoint: pulumi.String("string"),
Sampling: pulumi.Float64(0),
Credentials: pulumi.String("string"),
CustomTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
LoadBalancer: &cpln.GvcLoadBalancerArgs{
Dedicated: pulumi.Bool(false),
Ipset: pulumi.String("string"),
MultiZone: &cpln.GvcLoadBalancerMultiZoneArgs{
Enabled: pulumi.Bool(false),
},
Redirect: &cpln.GvcLoadBalancerRedirectArgs{
Class: &cpln.GvcLoadBalancerRedirectClassArgs{
Status401: pulumi.String("string"),
Status5xx: pulumi.String("string"),
},
},
TrustedProxies: pulumi.Int(0),
},
Locations: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
OtelTracing: &cpln.GvcOtelTracingArgs{
Endpoint: pulumi.String("string"),
Sampling: pulumi.Float64(0),
CustomTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
PullSecrets: pulumi.StringArray{
pulumi.String("string"),
},
Sidecar: &cpln.GvcSidecarArgs{
Envoy: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var gvcResource = new Gvc("gvcResource", GvcArgs.builder()
.controlplaneTracing(GvcControlplaneTracingArgs.builder()
.sampling(0.0)
.customTags(Map.of("string", "string"))
.build())
.description("string")
.endpointNamingFormat("string")
.env(Map.of("string", "string"))
.lightstepTracing(GvcLightstepTracingArgs.builder()
.endpoint("string")
.sampling(0.0)
.credentials("string")
.customTags(Map.of("string", "string"))
.build())
.loadBalancer(GvcLoadBalancerArgs.builder()
.dedicated(false)
.ipset("string")
.multiZone(GvcLoadBalancerMultiZoneArgs.builder()
.enabled(false)
.build())
.redirect(GvcLoadBalancerRedirectArgs.builder()
.class_(GvcLoadBalancerRedirectClassArgs.builder()
.status401("string")
.status5xx("string")
.build())
.build())
.trustedProxies(0)
.build())
.locations("string")
.name("string")
.otelTracing(GvcOtelTracingArgs.builder()
.endpoint("string")
.sampling(0.0)
.customTags(Map.of("string", "string"))
.build())
.pullSecrets("string")
.sidecar(GvcSidecarArgs.builder()
.envoy("string")
.build())
.tags(Map.of("string", "string"))
.build());
gvc_resource = cpln.Gvc("gvcResource",
controlplane_tracing={
"sampling": 0,
"custom_tags": {
"string": "string",
},
},
description="string",
endpoint_naming_format="string",
env={
"string": "string",
},
lightstep_tracing={
"endpoint": "string",
"sampling": 0,
"credentials": "string",
"custom_tags": {
"string": "string",
},
},
load_balancer={
"dedicated": False,
"ipset": "string",
"multi_zone": {
"enabled": False,
},
"redirect": {
"class_": {
"status401": "string",
"status5xx": "string",
},
},
"trusted_proxies": 0,
},
locations=["string"],
name="string",
otel_tracing={
"endpoint": "string",
"sampling": 0,
"custom_tags": {
"string": "string",
},
},
pull_secrets=["string"],
sidecar={
"envoy": "string",
},
tags={
"string": "string",
})
const gvcResource = new cpln.Gvc("gvcResource", {
controlplaneTracing: {
sampling: 0,
customTags: {
string: "string",
},
},
description: "string",
endpointNamingFormat: "string",
env: {
string: "string",
},
lightstepTracing: {
endpoint: "string",
sampling: 0,
credentials: "string",
customTags: {
string: "string",
},
},
loadBalancer: {
dedicated: false,
ipset: "string",
multiZone: {
enabled: false,
},
redirect: {
"class": {
status401: "string",
status5xx: "string",
},
},
trustedProxies: 0,
},
locations: ["string"],
name: "string",
otelTracing: {
endpoint: "string",
sampling: 0,
customTags: {
string: "string",
},
},
pullSecrets: ["string"],
sidecar: {
envoy: "string",
},
tags: {
string: "string",
},
});
type: cpln:Gvc
properties:
controlplaneTracing:
customTags:
string: string
sampling: 0
description: string
endpointNamingFormat: string
env:
string: string
lightstepTracing:
credentials: string
customTags:
string: string
endpoint: string
sampling: 0
loadBalancer:
dedicated: false
ipset: string
multiZone:
enabled: false
redirect:
class:
status5xx: string
status401: string
trustedProxies: 0
locations:
- string
name: string
otelTracing:
customTags:
string: string
endpoint: string
sampling: 0
pullSecrets:
- string
sidecar:
envoy: string
tags:
string: string
Gvc 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 Gvc resource accepts the following input properties:
- Controlplane
Tracing Pulumiverse.Cpln. Inputs. Gvc Controlplane Tracing - Description string
- Description of the Global Virtual Cloud.
- Domain string
- Custom domain name used by associated workloads.
- Endpoint
Naming stringFormat - Customizes the subdomain format for the canonical workload endpoint.
default
leaves it as '${workloadName}-${gvcName}.cpln.app'.org
follows the scheme '${workloadName}-${gvcName}.${org}.cpln.app'. - Env Dictionary<string, string>
- Key-value array of resource environment variables.
- Lightstep
Tracing Pulumiverse.Cpln. Inputs. Gvc Lightstep Tracing - Load
Balancer Pulumiverse.Cpln. Inputs. Gvc Load Balancer - Dedicated load balancer configuration.
- Locations List<string>
- A list of locations making up the Global Virtual Cloud.
- Name string
- Name of the Global Virtual Cloud.
- Otel
Tracing Pulumiverse.Cpln. Inputs. Gvc Otel Tracing - Pull
Secrets List<string> - A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
- Sidecar
Pulumiverse.
Cpln. Inputs. Gvc Sidecar - Dictionary<string, string>
- Key-value map of resource tags.
- Controlplane
Tracing GvcControlplane Tracing Args - Description string
- Description of the Global Virtual Cloud.
- Domain string
- Custom domain name used by associated workloads.
- Endpoint
Naming stringFormat - Customizes the subdomain format for the canonical workload endpoint.
default
leaves it as '${workloadName}-${gvcName}.cpln.app'.org
follows the scheme '${workloadName}-${gvcName}.${org}.cpln.app'. - Env map[string]string
- Key-value array of resource environment variables.
- Lightstep
Tracing GvcLightstep Tracing Args - Load
Balancer GvcLoad Balancer Args - Dedicated load balancer configuration.
- Locations []string
- A list of locations making up the Global Virtual Cloud.
- Name string
- Name of the Global Virtual Cloud.
- Otel
Tracing GvcOtel Tracing Args - Pull
Secrets []string - A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
- Sidecar
Gvc
Sidecar Args - map[string]string
- Key-value map of resource tags.
- controlplane
Tracing GvcControlplane Tracing - description String
- Description of the Global Virtual Cloud.
- domain String
- Custom domain name used by associated workloads.
- endpoint
Naming StringFormat - Customizes the subdomain format for the canonical workload endpoint.
default
leaves it as '${workloadName}-${gvcName}.cpln.app'.org
follows the scheme '${workloadName}-${gvcName}.${org}.cpln.app'. - env Map<String,String>
- Key-value array of resource environment variables.
- lightstep
Tracing GvcLightstep Tracing - load
Balancer GvcLoad Balancer - Dedicated load balancer configuration.
- locations List<String>
- A list of locations making up the Global Virtual Cloud.
- name String
- Name of the Global Virtual Cloud.
- otel
Tracing GvcOtel Tracing - pull
Secrets List<String> - A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
- sidecar
Gvc
Sidecar - Map<String,String>
- Key-value map of resource tags.
- controlplane
Tracing GvcControlplane Tracing - description string
- Description of the Global Virtual Cloud.
- domain string
- Custom domain name used by associated workloads.
- endpoint
Naming stringFormat - Customizes the subdomain format for the canonical workload endpoint.
default
leaves it as '${workloadName}-${gvcName}.cpln.app'.org
follows the scheme '${workloadName}-${gvcName}.${org}.cpln.app'. - env {[key: string]: string}
- Key-value array of resource environment variables.
- lightstep
Tracing GvcLightstep Tracing - load
Balancer GvcLoad Balancer - Dedicated load balancer configuration.
- locations string[]
- A list of locations making up the Global Virtual Cloud.
- name string
- Name of the Global Virtual Cloud.
- otel
Tracing GvcOtel Tracing - pull
Secrets string[] - A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
- sidecar
Gvc
Sidecar - {[key: string]: string}
- Key-value map of resource tags.
- controlplane_
tracing GvcControlplane Tracing Args - description str
- Description of the Global Virtual Cloud.
- domain str
- Custom domain name used by associated workloads.
- endpoint_
naming_ strformat - Customizes the subdomain format for the canonical workload endpoint.
default
leaves it as '${workloadName}-${gvcName}.cpln.app'.org
follows the scheme '${workloadName}-${gvcName}.${org}.cpln.app'. - env Mapping[str, str]
- Key-value array of resource environment variables.
- lightstep_
tracing GvcLightstep Tracing Args - load_
balancer GvcLoad Balancer Args - Dedicated load balancer configuration.
- locations Sequence[str]
- A list of locations making up the Global Virtual Cloud.
- name str
- Name of the Global Virtual Cloud.
- otel_
tracing GvcOtel Tracing Args - pull_
secrets Sequence[str] - A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
- sidecar
Gvc
Sidecar Args - Mapping[str, str]
- Key-value map of resource tags.
- controlplane
Tracing Property Map - description String
- Description of the Global Virtual Cloud.
- domain String
- Custom domain name used by associated workloads.
- endpoint
Naming StringFormat - Customizes the subdomain format for the canonical workload endpoint.
default
leaves it as '${workloadName}-${gvcName}.cpln.app'.org
follows the scheme '${workloadName}-${gvcName}.${org}.cpln.app'. - env Map<String>
- Key-value array of resource environment variables.
- lightstep
Tracing Property Map - load
Balancer Property Map - Dedicated load balancer configuration.
- locations List<String>
- A list of locations making up the Global Virtual Cloud.
- name String
- Name of the Global Virtual Cloud.
- otel
Tracing Property Map - pull
Secrets List<String> - A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
- sidecar Property Map
- Map<String>
- Key-value map of resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Gvc resource produces the following output properties:
Look up Existing Gvc Resource
Get an existing Gvc 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?: GvcState, opts?: CustomResourceOptions): Gvc
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
alias: Optional[str] = None,
controlplane_tracing: Optional[GvcControlplaneTracingArgs] = None,
cpln_id: Optional[str] = None,
description: Optional[str] = None,
domain: Optional[str] = None,
endpoint_naming_format: Optional[str] = None,
env: Optional[Mapping[str, str]] = None,
lightstep_tracing: Optional[GvcLightstepTracingArgs] = None,
load_balancer: Optional[GvcLoadBalancerArgs] = None,
locations: Optional[Sequence[str]] = None,
name: Optional[str] = None,
otel_tracing: Optional[GvcOtelTracingArgs] = None,
pull_secrets: Optional[Sequence[str]] = None,
self_link: Optional[str] = None,
sidecar: Optional[GvcSidecarArgs] = None,
tags: Optional[Mapping[str, str]] = None) -> Gvc
func GetGvc(ctx *Context, name string, id IDInput, state *GvcState, opts ...ResourceOption) (*Gvc, error)
public static Gvc Get(string name, Input<string> id, GvcState? state, CustomResourceOptions? opts = null)
public static Gvc get(String name, Output<String> id, GvcState state, CustomResourceOptions options)
resources: _: type: cpln:Gvc 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.
- Alias string
- The alias name of the GVC.
- Controlplane
Tracing Pulumiverse.Cpln. Inputs. Gvc Controlplane Tracing - Cpln
Id string - The ID, in GUID format, of the Global Virtual Cloud.
- Description string
- Description of the Global Virtual Cloud.
- Domain string
- Custom domain name used by associated workloads.
- Endpoint
Naming stringFormat - Customizes the subdomain format for the canonical workload endpoint.
default
leaves it as '${workloadName}-${gvcName}.cpln.app'.org
follows the scheme '${workloadName}-${gvcName}.${org}.cpln.app'. - Env Dictionary<string, string>
- Key-value array of resource environment variables.
- Lightstep
Tracing Pulumiverse.Cpln. Inputs. Gvc Lightstep Tracing - Load
Balancer Pulumiverse.Cpln. Inputs. Gvc Load Balancer - Dedicated load balancer configuration.
- Locations List<string>
- A list of locations making up the Global Virtual Cloud.
- Name string
- Name of the Global Virtual Cloud.
- Otel
Tracing Pulumiverse.Cpln. Inputs. Gvc Otel Tracing - Pull
Secrets List<string> - A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
- Self
Link string - Full link to this resource. Can be referenced by other resources.
- Sidecar
Pulumiverse.
Cpln. Inputs. Gvc Sidecar - Dictionary<string, string>
- Key-value map of resource tags.
- Alias string
- The alias name of the GVC.
- Controlplane
Tracing GvcControlplane Tracing Args - Cpln
Id string - The ID, in GUID format, of the Global Virtual Cloud.
- Description string
- Description of the Global Virtual Cloud.
- Domain string
- Custom domain name used by associated workloads.
- Endpoint
Naming stringFormat - Customizes the subdomain format for the canonical workload endpoint.
default
leaves it as '${workloadName}-${gvcName}.cpln.app'.org
follows the scheme '${workloadName}-${gvcName}.${org}.cpln.app'. - Env map[string]string
- Key-value array of resource environment variables.
- Lightstep
Tracing GvcLightstep Tracing Args - Load
Balancer GvcLoad Balancer Args - Dedicated load balancer configuration.
- Locations []string
- A list of locations making up the Global Virtual Cloud.
- Name string
- Name of the Global Virtual Cloud.
- Otel
Tracing GvcOtel Tracing Args - Pull
Secrets []string - A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
- Self
Link string - Full link to this resource. Can be referenced by other resources.
- Sidecar
Gvc
Sidecar Args - map[string]string
- Key-value map of resource tags.
- alias String
- The alias name of the GVC.
- controlplane
Tracing GvcControlplane Tracing - cpln
Id String - The ID, in GUID format, of the Global Virtual Cloud.
- description String
- Description of the Global Virtual Cloud.
- domain String
- Custom domain name used by associated workloads.
- endpoint
Naming StringFormat - Customizes the subdomain format for the canonical workload endpoint.
default
leaves it as '${workloadName}-${gvcName}.cpln.app'.org
follows the scheme '${workloadName}-${gvcName}.${org}.cpln.app'. - env Map<String,String>
- Key-value array of resource environment variables.
- lightstep
Tracing GvcLightstep Tracing - load
Balancer GvcLoad Balancer - Dedicated load balancer configuration.
- locations List<String>
- A list of locations making up the Global Virtual Cloud.
- name String
- Name of the Global Virtual Cloud.
- otel
Tracing GvcOtel Tracing - pull
Secrets List<String> - A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
- self
Link String - Full link to this resource. Can be referenced by other resources.
- sidecar
Gvc
Sidecar - Map<String,String>
- Key-value map of resource tags.
- alias string
- The alias name of the GVC.
- controlplane
Tracing GvcControlplane Tracing - cpln
Id string - The ID, in GUID format, of the Global Virtual Cloud.
- description string
- Description of the Global Virtual Cloud.
- domain string
- Custom domain name used by associated workloads.
- endpoint
Naming stringFormat - Customizes the subdomain format for the canonical workload endpoint.
default
leaves it as '${workloadName}-${gvcName}.cpln.app'.org
follows the scheme '${workloadName}-${gvcName}.${org}.cpln.app'. - env {[key: string]: string}
- Key-value array of resource environment variables.
- lightstep
Tracing GvcLightstep Tracing - load
Balancer GvcLoad Balancer - Dedicated load balancer configuration.
- locations string[]
- A list of locations making up the Global Virtual Cloud.
- name string
- Name of the Global Virtual Cloud.
- otel
Tracing GvcOtel Tracing - pull
Secrets string[] - A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
- self
Link string - Full link to this resource. Can be referenced by other resources.
- sidecar
Gvc
Sidecar - {[key: string]: string}
- Key-value map of resource tags.
- alias str
- The alias name of the GVC.
- controlplane_
tracing GvcControlplane Tracing Args - cpln_
id str - The ID, in GUID format, of the Global Virtual Cloud.
- description str
- Description of the Global Virtual Cloud.
- domain str
- Custom domain name used by associated workloads.
- endpoint_
naming_ strformat - Customizes the subdomain format for the canonical workload endpoint.
default
leaves it as '${workloadName}-${gvcName}.cpln.app'.org
follows the scheme '${workloadName}-${gvcName}.${org}.cpln.app'. - env Mapping[str, str]
- Key-value array of resource environment variables.
- lightstep_
tracing GvcLightstep Tracing Args - load_
balancer GvcLoad Balancer Args - Dedicated load balancer configuration.
- locations Sequence[str]
- A list of locations making up the Global Virtual Cloud.
- name str
- Name of the Global Virtual Cloud.
- otel_
tracing GvcOtel Tracing Args - pull_
secrets Sequence[str] - A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
- self_
link str - Full link to this resource. Can be referenced by other resources.
- sidecar
Gvc
Sidecar Args - Mapping[str, str]
- Key-value map of resource tags.
- alias String
- The alias name of the GVC.
- controlplane
Tracing Property Map - cpln
Id String - The ID, in GUID format, of the Global Virtual Cloud.
- description String
- Description of the Global Virtual Cloud.
- domain String
- Custom domain name used by associated workloads.
- endpoint
Naming StringFormat - Customizes the subdomain format for the canonical workload endpoint.
default
leaves it as '${workloadName}-${gvcName}.cpln.app'.org
follows the scheme '${workloadName}-${gvcName}.${org}.cpln.app'. - env Map<String>
- Key-value array of resource environment variables.
- lightstep
Tracing Property Map - load
Balancer Property Map - Dedicated load balancer configuration.
- locations List<String>
- A list of locations making up the Global Virtual Cloud.
- name String
- Name of the Global Virtual Cloud.
- otel
Tracing Property Map - pull
Secrets List<String> - A list of pull secret names used to authenticate to any private image repository referenced by Workloads within the GVC.
- self
Link String - Full link to this resource. Can be referenced by other resources.
- sidecar Property Map
- Map<String>
- Key-value map of resource tags.
Supporting Types
GvcControlplaneTracing, GvcControlplaneTracingArgs
- Sampling double
- Determines what percentage of requests should be traced.
- Dictionary<string, string>
- Key-value map of custom tags.
- Sampling float64
- Determines what percentage of requests should be traced.
- map[string]string
- Key-value map of custom tags.
- sampling Double
- Determines what percentage of requests should be traced.
- Map<String,String>
- Key-value map of custom tags.
- sampling number
- Determines what percentage of requests should be traced.
- {[key: string]: string}
- Key-value map of custom tags.
- sampling float
- Determines what percentage of requests should be traced.
- Mapping[str, str]
- Key-value map of custom tags.
- sampling Number
- Determines what percentage of requests should be traced.
- Map<String>
- Key-value map of custom tags.
GvcLightstepTracing, GvcLightstepTracingArgs
- Endpoint string
- Tracing Endpoint Workload. Either the canonical endpoint or internal endpoint.
- Sampling double
- Determines what percentage of requests should be traced.
- Credentials string
- Full link to referenced Opaque Secret.
- Dictionary<string, string>
- Key-value map of custom tags.
- Endpoint string
- Tracing Endpoint Workload. Either the canonical endpoint or internal endpoint.
- Sampling float64
- Determines what percentage of requests should be traced.
- Credentials string
- Full link to referenced Opaque Secret.
- map[string]string
- Key-value map of custom tags.
- endpoint String
- Tracing Endpoint Workload. Either the canonical endpoint or internal endpoint.
- sampling Double
- Determines what percentage of requests should be traced.
- credentials String
- Full link to referenced Opaque Secret.
- Map<String,String>
- Key-value map of custom tags.
- endpoint string
- Tracing Endpoint Workload. Either the canonical endpoint or internal endpoint.
- sampling number
- Determines what percentage of requests should be traced.
- credentials string
- Full link to referenced Opaque Secret.
- {[key: string]: string}
- Key-value map of custom tags.
- endpoint str
- Tracing Endpoint Workload. Either the canonical endpoint or internal endpoint.
- sampling float
- Determines what percentage of requests should be traced.
- credentials str
- Full link to referenced Opaque Secret.
- Mapping[str, str]
- Key-value map of custom tags.
- endpoint String
- Tracing Endpoint Workload. Either the canonical endpoint or internal endpoint.
- sampling Number
- Determines what percentage of requests should be traced.
- credentials String
- Full link to referenced Opaque Secret.
- Map<String>
- Key-value map of custom tags.
GvcLoadBalancer, GvcLoadBalancerArgs
- Dedicated bool
- Creates a dedicated load balancer in each location and enables additional Domain features: custom ports, protocols and wildcard hostnames. Charges apply for each location.
- Ipset string
- The link or the name of the IP Set that will be used for this load balancer.
- Multi
Zone Pulumiverse.Cpln. Inputs. Gvc Load Balancer Multi Zone - Redirect
Pulumiverse.
Cpln. Inputs. Gvc Load Balancer Redirect - Specify the url to be redirected to for different http status codes.
- Trusted
Proxies int - Controls the address used for request logging and for setting the X-Envoy-External-Address header. If set to 1, then the last address in an existing X-Forwarded-For header will be used in place of the source client IP address. If set to 2, then the second to last address in an existing X-Forwarded-For header will be used in place of the source client IP address. If the XFF header does not have at least two addresses or does not exist then the source client IP address will be used instead.
- Dedicated bool
- Creates a dedicated load balancer in each location and enables additional Domain features: custom ports, protocols and wildcard hostnames. Charges apply for each location.
- Ipset string
- The link or the name of the IP Set that will be used for this load balancer.
- Multi
Zone GvcLoad Balancer Multi Zone - Redirect
Gvc
Load Balancer Redirect - Specify the url to be redirected to for different http status codes.
- Trusted
Proxies int - Controls the address used for request logging and for setting the X-Envoy-External-Address header. If set to 1, then the last address in an existing X-Forwarded-For header will be used in place of the source client IP address. If set to 2, then the second to last address in an existing X-Forwarded-For header will be used in place of the source client IP address. If the XFF header does not have at least two addresses or does not exist then the source client IP address will be used instead.
- dedicated Boolean
- Creates a dedicated load balancer in each location and enables additional Domain features: custom ports, protocols and wildcard hostnames. Charges apply for each location.
- ipset String
- The link or the name of the IP Set that will be used for this load balancer.
- multi
Zone GvcLoad Balancer Multi Zone - redirect
Gvc
Load Balancer Redirect - Specify the url to be redirected to for different http status codes.
- trusted
Proxies Integer - Controls the address used for request logging and for setting the X-Envoy-External-Address header. If set to 1, then the last address in an existing X-Forwarded-For header will be used in place of the source client IP address. If set to 2, then the second to last address in an existing X-Forwarded-For header will be used in place of the source client IP address. If the XFF header does not have at least two addresses or does not exist then the source client IP address will be used instead.
- dedicated boolean
- Creates a dedicated load balancer in each location and enables additional Domain features: custom ports, protocols and wildcard hostnames. Charges apply for each location.
- ipset string
- The link or the name of the IP Set that will be used for this load balancer.
- multi
Zone GvcLoad Balancer Multi Zone - redirect
Gvc
Load Balancer Redirect - Specify the url to be redirected to for different http status codes.
- trusted
Proxies number - Controls the address used for request logging and for setting the X-Envoy-External-Address header. If set to 1, then the last address in an existing X-Forwarded-For header will be used in place of the source client IP address. If set to 2, then the second to last address in an existing X-Forwarded-For header will be used in place of the source client IP address. If the XFF header does not have at least two addresses or does not exist then the source client IP address will be used instead.
- dedicated bool
- Creates a dedicated load balancer in each location and enables additional Domain features: custom ports, protocols and wildcard hostnames. Charges apply for each location.
- ipset str
- The link or the name of the IP Set that will be used for this load balancer.
- multi_
zone GvcLoad Balancer Multi Zone - redirect
Gvc
Load Balancer Redirect - Specify the url to be redirected to for different http status codes.
- trusted_
proxies int - Controls the address used for request logging and for setting the X-Envoy-External-Address header. If set to 1, then the last address in an existing X-Forwarded-For header will be used in place of the source client IP address. If set to 2, then the second to last address in an existing X-Forwarded-For header will be used in place of the source client IP address. If the XFF header does not have at least two addresses or does not exist then the source client IP address will be used instead.
- dedicated Boolean
- Creates a dedicated load balancer in each location and enables additional Domain features: custom ports, protocols and wildcard hostnames. Charges apply for each location.
- ipset String
- The link or the name of the IP Set that will be used for this load balancer.
- multi
Zone Property Map - redirect Property Map
- Specify the url to be redirected to for different http status codes.
- trusted
Proxies Number - Controls the address used for request logging and for setting the X-Envoy-External-Address header. If set to 1, then the last address in an existing X-Forwarded-For header will be used in place of the source client IP address. If set to 2, then the second to last address in an existing X-Forwarded-For header will be used in place of the source client IP address. If the XFF header does not have at least two addresses or does not exist then the source client IP address will be used instead.
GvcLoadBalancerMultiZone, GvcLoadBalancerMultiZoneArgs
- Enabled bool
- Enabled bool
- enabled Boolean
- enabled boolean
- enabled bool
- enabled Boolean
GvcLoadBalancerRedirect, GvcLoadBalancerRedirectArgs
- Class
Pulumiverse.
Cpln. Inputs. Gvc Load Balancer Redirect Class - Specify the redirect url for all status codes in a class.
- Class
Gvc
Load Balancer Redirect Class - Specify the redirect url for all status codes in a class.
- class_
Gvc
Load Balancer Redirect Class - Specify the redirect url for all status codes in a class.
- class
Gvc
Load Balancer Redirect Class - Specify the redirect url for all status codes in a class.
- class_
Gvc
Load Balancer Redirect Class - Specify the redirect url for all status codes in a class.
- class Property Map
- Specify the redirect url for all status codes in a class.
GvcLoadBalancerRedirectClass, GvcLoadBalancerRedirectClassArgs
GvcOtelTracing, GvcOtelTracingArgs
GvcSidecar, GvcSidecarArgs
- Envoy string
- Envoy string
- envoy String
- envoy string
- envoy str
- envoy String
Package Details
- Repository
- cpln pulumiverse/pulumi-cpln
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cpln
Terraform Provider.