konnect.CloudGatewayCustomDomain
Explore with Pulumi AI
CloudGatewayCustomDomain Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myCloudgatewaycustomdomain = new konnect.CloudGatewayCustomDomain("myCloudgatewaycustomdomain", {
controlPlaneGeo: "in",
controlPlaneId: "0949471e-b759-45ba-87ab-ee63fb781388",
domain: "example.com",
});
import pulumi
import pulumi_konnect as konnect
my_cloudgatewaycustomdomain = konnect.CloudGatewayCustomDomain("myCloudgatewaycustomdomain",
control_plane_geo="in",
control_plane_id="0949471e-b759-45ba-87ab-ee63fb781388",
domain="example.com")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/konnect/v2/konnect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := konnect.NewCloudGatewayCustomDomain(ctx, "myCloudgatewaycustomdomain", &konnect.CloudGatewayCustomDomainArgs{
ControlPlaneGeo: pulumi.String("in"),
ControlPlaneId: pulumi.String("0949471e-b759-45ba-87ab-ee63fb781388"),
Domain: pulumi.String("example.com"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Konnect = Pulumi.Konnect;
return await Deployment.RunAsync(() =>
{
var myCloudgatewaycustomdomain = new Konnect.CloudGatewayCustomDomain("myCloudgatewaycustomdomain", new()
{
ControlPlaneGeo = "in",
ControlPlaneId = "0949471e-b759-45ba-87ab-ee63fb781388",
Domain = "example.com",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.CloudGatewayCustomDomain;
import com.pulumi.konnect.CloudGatewayCustomDomainArgs;
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 myCloudgatewaycustomdomain = new CloudGatewayCustomDomain("myCloudgatewaycustomdomain", CloudGatewayCustomDomainArgs.builder()
.controlPlaneGeo("in")
.controlPlaneId("0949471e-b759-45ba-87ab-ee63fb781388")
.domain("example.com")
.build());
}
}
resources:
myCloudgatewaycustomdomain:
type: konnect:CloudGatewayCustomDomain
properties:
controlPlaneGeo: in
controlPlaneId: 0949471e-b759-45ba-87ab-ee63fb781388
domain: example.com
Create CloudGatewayCustomDomain Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudGatewayCustomDomain(name: string, args: CloudGatewayCustomDomainArgs, opts?: CustomResourceOptions);
@overload
def CloudGatewayCustomDomain(resource_name: str,
args: CloudGatewayCustomDomainArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CloudGatewayCustomDomain(resource_name: str,
opts: Optional[ResourceOptions] = None,
control_plane_geo: Optional[str] = None,
control_plane_id: Optional[str] = None,
domain: Optional[str] = None)
func NewCloudGatewayCustomDomain(ctx *Context, name string, args CloudGatewayCustomDomainArgs, opts ...ResourceOption) (*CloudGatewayCustomDomain, error)
public CloudGatewayCustomDomain(string name, CloudGatewayCustomDomainArgs args, CustomResourceOptions? opts = null)
public CloudGatewayCustomDomain(String name, CloudGatewayCustomDomainArgs args)
public CloudGatewayCustomDomain(String name, CloudGatewayCustomDomainArgs args, CustomResourceOptions options)
type: konnect:CloudGatewayCustomDomain
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 CloudGatewayCustomDomainArgs
- 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 CloudGatewayCustomDomainArgs
- 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 CloudGatewayCustomDomainArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudGatewayCustomDomainArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudGatewayCustomDomainArgs
- 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 cloudGatewayCustomDomainResource = new Konnect.CloudGatewayCustomDomain("cloudGatewayCustomDomainResource", new()
{
ControlPlaneGeo = "string",
ControlPlaneId = "string",
Domain = "string",
});
example, err := konnect.NewCloudGatewayCustomDomain(ctx, "cloudGatewayCustomDomainResource", &konnect.CloudGatewayCustomDomainArgs{
ControlPlaneGeo: pulumi.String("string"),
ControlPlaneId: pulumi.String("string"),
Domain: pulumi.String("string"),
})
var cloudGatewayCustomDomainResource = new CloudGatewayCustomDomain("cloudGatewayCustomDomainResource", CloudGatewayCustomDomainArgs.builder()
.controlPlaneGeo("string")
.controlPlaneId("string")
.domain("string")
.build());
cloud_gateway_custom_domain_resource = konnect.CloudGatewayCustomDomain("cloudGatewayCustomDomainResource",
control_plane_geo="string",
control_plane_id="string",
domain="string")
const cloudGatewayCustomDomainResource = new konnect.CloudGatewayCustomDomain("cloudGatewayCustomDomainResource", {
controlPlaneGeo: "string",
controlPlaneId: "string",
domain: "string",
});
type: konnect:CloudGatewayCustomDomain
properties:
controlPlaneGeo: string
controlPlaneId: string
domain: string
CloudGatewayCustomDomain 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 CloudGatewayCustomDomain resource accepts the following input properties:
- Control
Plane stringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]; Requires replacement if changed.
- Control
Plane stringId - Requires replacement if changed.
- Domain string
- Domain name of the custom domain. Requires replacement if changed.
- Control
Plane stringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]; Requires replacement if changed.
- Control
Plane stringId - Requires replacement if changed.
- Domain string
- Domain name of the custom domain. Requires replacement if changed.
- control
Plane StringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]; Requires replacement if changed.
- control
Plane StringId - Requires replacement if changed.
- domain String
- Domain name of the custom domain. Requires replacement if changed.
- control
Plane stringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]; Requires replacement if changed.
- control
Plane stringId - Requires replacement if changed.
- domain string
- Domain name of the custom domain. Requires replacement if changed.
- control_
plane_ strgeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]; Requires replacement if changed.
- control_
plane_ strid - Requires replacement if changed.
- domain str
- Domain name of the custom domain. Requires replacement if changed.
- control
Plane StringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]; Requires replacement if changed.
- control
Plane StringId - Requires replacement if changed.
- domain String
- Domain name of the custom domain. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudGatewayCustomDomain resource produces the following output properties:
- Certificate
Id string - Certificate ID for the certificate representing this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- Created
At string - An RFC-3339 timestamp representation of custom domain creation date.
- Entity
Version double - Monotonically-increasing version count of the custom domain, to indicate the order of updates to the custom domain.
- Id string
- The provider-assigned unique ID for this managed resource.
- Sni
Id string - Server Name Indication ID for this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- State string
- State of the custom domain. must be one of ["created", "initializing", "ready", "terminating", "terminated", "error"]
- State
Metadata CloudGateway Custom Domain State Metadata - Metadata describing the backing state of the custom domain and why it may be in an erroneous state.
- Updated
At string - An RFC-3339 timestamp representation of custom domain update date.
- Certificate
Id string - Certificate ID for the certificate representing this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- Created
At string - An RFC-3339 timestamp representation of custom domain creation date.
- Entity
Version float64 - Monotonically-increasing version count of the custom domain, to indicate the order of updates to the custom domain.
- Id string
- The provider-assigned unique ID for this managed resource.
- Sni
Id string - Server Name Indication ID for this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- State string
- State of the custom domain. must be one of ["created", "initializing", "ready", "terminating", "terminated", "error"]
- State
Metadata CloudGateway Custom Domain State Metadata - Metadata describing the backing state of the custom domain and why it may be in an erroneous state.
- Updated
At string - An RFC-3339 timestamp representation of custom domain update date.
- certificate
Id String - Certificate ID for the certificate representing this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- created
At String - An RFC-3339 timestamp representation of custom domain creation date.
- entity
Version Double - Monotonically-increasing version count of the custom domain, to indicate the order of updates to the custom domain.
- id String
- The provider-assigned unique ID for this managed resource.
- sni
Id String - Server Name Indication ID for this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- state String
- State of the custom domain. must be one of ["created", "initializing", "ready", "terminating", "terminated", "error"]
- state
Metadata CloudGateway Custom Domain State Metadata - Metadata describing the backing state of the custom domain and why it may be in an erroneous state.
- updated
At String - An RFC-3339 timestamp representation of custom domain update date.
- certificate
Id string - Certificate ID for the certificate representing this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- created
At string - An RFC-3339 timestamp representation of custom domain creation date.
- entity
Version number - Monotonically-increasing version count of the custom domain, to indicate the order of updates to the custom domain.
- id string
- The provider-assigned unique ID for this managed resource.
- sni
Id string - Server Name Indication ID for this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- state string
- State of the custom domain. must be one of ["created", "initializing", "ready", "terminating", "terminated", "error"]
- state
Metadata CloudGateway Custom Domain State Metadata - Metadata describing the backing state of the custom domain and why it may be in an erroneous state.
- updated
At string - An RFC-3339 timestamp representation of custom domain update date.
- certificate_
id str - Certificate ID for the certificate representing this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- created_
at str - An RFC-3339 timestamp representation of custom domain creation date.
- entity_
version float - Monotonically-increasing version count of the custom domain, to indicate the order of updates to the custom domain.
- id str
- The provider-assigned unique ID for this managed resource.
- sni_
id str - Server Name Indication ID for this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- state str
- State of the custom domain. must be one of ["created", "initializing", "ready", "terminating", "terminated", "error"]
- state_
metadata CloudGateway Custom Domain State Metadata - Metadata describing the backing state of the custom domain and why it may be in an erroneous state.
- updated_
at str - An RFC-3339 timestamp representation of custom domain update date.
- certificate
Id String - Certificate ID for the certificate representing this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- created
At String - An RFC-3339 timestamp representation of custom domain creation date.
- entity
Version Number - Monotonically-increasing version count of the custom domain, to indicate the order of updates to the custom domain.
- id String
- The provider-assigned unique ID for this managed resource.
- sni
Id String - Server Name Indication ID for this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- state String
- State of the custom domain. must be one of ["created", "initializing", "ready", "terminating", "terminated", "error"]
- state
Metadata Property Map - Metadata describing the backing state of the custom domain and why it may be in an erroneous state.
- updated
At String - An RFC-3339 timestamp representation of custom domain update date.
Look up Existing CloudGatewayCustomDomain Resource
Get an existing CloudGatewayCustomDomain 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?: CloudGatewayCustomDomainState, opts?: CustomResourceOptions): CloudGatewayCustomDomain
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
certificate_id: Optional[str] = None,
control_plane_geo: Optional[str] = None,
control_plane_id: Optional[str] = None,
created_at: Optional[str] = None,
domain: Optional[str] = None,
entity_version: Optional[float] = None,
sni_id: Optional[str] = None,
state: Optional[str] = None,
state_metadata: Optional[CloudGatewayCustomDomainStateMetadataArgs] = None,
updated_at: Optional[str] = None) -> CloudGatewayCustomDomain
func GetCloudGatewayCustomDomain(ctx *Context, name string, id IDInput, state *CloudGatewayCustomDomainState, opts ...ResourceOption) (*CloudGatewayCustomDomain, error)
public static CloudGatewayCustomDomain Get(string name, Input<string> id, CloudGatewayCustomDomainState? state, CustomResourceOptions? opts = null)
public static CloudGatewayCustomDomain get(String name, Output<String> id, CloudGatewayCustomDomainState state, CustomResourceOptions options)
resources: _: type: konnect:CloudGatewayCustomDomain 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.
- Certificate
Id string - Certificate ID for the certificate representing this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- Control
Plane stringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]; Requires replacement if changed.
- Control
Plane stringId - Requires replacement if changed.
- Created
At string - An RFC-3339 timestamp representation of custom domain creation date.
- Domain string
- Domain name of the custom domain. Requires replacement if changed.
- Entity
Version double - Monotonically-increasing version count of the custom domain, to indicate the order of updates to the custom domain.
- Sni
Id string - Server Name Indication ID for this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- State string
- State of the custom domain. must be one of ["created", "initializing", "ready", "terminating", "terminated", "error"]
- State
Metadata CloudGateway Custom Domain State Metadata - Metadata describing the backing state of the custom domain and why it may be in an erroneous state.
- Updated
At string - An RFC-3339 timestamp representation of custom domain update date.
- Certificate
Id string - Certificate ID for the certificate representing this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- Control
Plane stringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]; Requires replacement if changed.
- Control
Plane stringId - Requires replacement if changed.
- Created
At string - An RFC-3339 timestamp representation of custom domain creation date.
- Domain string
- Domain name of the custom domain. Requires replacement if changed.
- Entity
Version float64 - Monotonically-increasing version count of the custom domain, to indicate the order of updates to the custom domain.
- Sni
Id string - Server Name Indication ID for this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- State string
- State of the custom domain. must be one of ["created", "initializing", "ready", "terminating", "terminated", "error"]
- State
Metadata CloudGateway Custom Domain State Metadata Args - Metadata describing the backing state of the custom domain and why it may be in an erroneous state.
- Updated
At string - An RFC-3339 timestamp representation of custom domain update date.
- certificate
Id String - Certificate ID for the certificate representing this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- control
Plane StringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]; Requires replacement if changed.
- control
Plane StringId - Requires replacement if changed.
- created
At String - An RFC-3339 timestamp representation of custom domain creation date.
- domain String
- Domain name of the custom domain. Requires replacement if changed.
- entity
Version Double - Monotonically-increasing version count of the custom domain, to indicate the order of updates to the custom domain.
- sni
Id String - Server Name Indication ID for this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- state String
- State of the custom domain. must be one of ["created", "initializing", "ready", "terminating", "terminated", "error"]
- state
Metadata CloudGateway Custom Domain State Metadata - Metadata describing the backing state of the custom domain and why it may be in an erroneous state.
- updated
At String - An RFC-3339 timestamp representation of custom domain update date.
- certificate
Id string - Certificate ID for the certificate representing this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- control
Plane stringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]; Requires replacement if changed.
- control
Plane stringId - Requires replacement if changed.
- created
At string - An RFC-3339 timestamp representation of custom domain creation date.
- domain string
- Domain name of the custom domain. Requires replacement if changed.
- entity
Version number - Monotonically-increasing version count of the custom domain, to indicate the order of updates to the custom domain.
- sni
Id string - Server Name Indication ID for this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- state string
- State of the custom domain. must be one of ["created", "initializing", "ready", "terminating", "terminated", "error"]
- state
Metadata CloudGateway Custom Domain State Metadata - Metadata describing the backing state of the custom domain and why it may be in an erroneous state.
- updated
At string - An RFC-3339 timestamp representation of custom domain update date.
- certificate_
id str - Certificate ID for the certificate representing this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- control_
plane_ strgeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]; Requires replacement if changed.
- control_
plane_ strid - Requires replacement if changed.
- created_
at str - An RFC-3339 timestamp representation of custom domain creation date.
- domain str
- Domain name of the custom domain. Requires replacement if changed.
- entity_
version float - Monotonically-increasing version count of the custom domain, to indicate the order of updates to the custom domain.
- sni_
id str - Server Name Indication ID for this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- state str
- State of the custom domain. must be one of ["created", "initializing", "ready", "terminating", "terminated", "error"]
- state_
metadata CloudGateway Custom Domain State Metadata Args - Metadata describing the backing state of the custom domain and why it may be in an erroneous state.
- updated_
at str - An RFC-3339 timestamp representation of custom domain update date.
- certificate
Id String - Certificate ID for the certificate representing this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- control
Plane StringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]; Requires replacement if changed.
- control
Plane StringId - Requires replacement if changed.
- created
At String - An RFC-3339 timestamp representation of custom domain creation date.
- domain String
- Domain name of the custom domain. Requires replacement if changed.
- entity
Version Number - Monotonically-increasing version count of the custom domain, to indicate the order of updates to the custom domain.
- sni
Id String - Server Name Indication ID for this domain and stored on data-planes for this control-plane. Can be retrieved via the control-planes API for this custom domain's control-plane.
- state String
- State of the custom domain. must be one of ["created", "initializing", "ready", "terminating", "terminated", "error"]
- state
Metadata Property Map - Metadata describing the backing state of the custom domain and why it may be in an erroneous state.
- updated
At String - An RFC-3339 timestamp representation of custom domain update date.
Supporting Types
CloudGatewayCustomDomainStateMetadata, CloudGatewayCustomDomainStateMetadataArgs
- Reason string
- Reason why the custom domain may be in an erroneous state, reported from backing infrastructure.
- Reported
Status string - Reported status of the custom domain from backing infrastructure.
- Reason string
- Reason why the custom domain may be in an erroneous state, reported from backing infrastructure.
- Reported
Status string - Reported status of the custom domain from backing infrastructure.
- reason String
- Reason why the custom domain may be in an erroneous state, reported from backing infrastructure.
- reported
Status String - Reported status of the custom domain from backing infrastructure.
- reason string
- Reason why the custom domain may be in an erroneous state, reported from backing infrastructure.
- reported
Status string - Reported status of the custom domain from backing infrastructure.
- reason str
- Reason why the custom domain may be in an erroneous state, reported from backing infrastructure.
- reported_
status str - Reported status of the custom domain from backing infrastructure.
- reason String
- Reason why the custom domain may be in an erroneous state, reported from backing infrastructure.
- reported
Status String - Reported status of the custom domain from backing infrastructure.
Import
$ pulumi import konnect:index/cloudGatewayCustomDomain:CloudGatewayCustomDomain my_konnect_cloud_gateway_custom_domain "39ed3790-085d-4605-9627-f96d86aaf425"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- konnect kong/terraform-provider-konnect
- License
- Notes
- This Pulumi package is based on the
konnect
Terraform Provider.