tencentcloud.KubernetesClusterEndpoint
Explore with Pulumi AI
Provide a resource to create a kubernetes cluster endpoint. This resource allows you to create an empty cluster first without any workers. Only all attached node depends create complete, cluster endpoint will finally be enabled.
NOTE: Recommend using
depends_on
to make sure endpoint create after node pools or workers does.
Example Usage
Open intranet access for kubernetes cluster
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = new tencentcloud.KubernetesClusterEndpoint("example", {
clusterId: "cls-fdy7hm1q",
clusterIntranet: true,
clusterIntranetDomain: "intranet_demo.com",
clusterIntranetSubnetId: "subnet-7nl0sswi",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.KubernetesClusterEndpoint("example",
cluster_id="cls-fdy7hm1q",
cluster_intranet=True,
cluster_intranet_domain="intranet_demo.com",
cluster_intranet_subnet_id="subnet-7nl0sswi")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.NewKubernetesClusterEndpoint(ctx, "example", &tencentcloud.KubernetesClusterEndpointArgs{
ClusterId: pulumi.String("cls-fdy7hm1q"),
ClusterIntranet: pulumi.Bool(true),
ClusterIntranetDomain: pulumi.String("intranet_demo.com"),
ClusterIntranetSubnetId: pulumi.String("subnet-7nl0sswi"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var example = new Tencentcloud.KubernetesClusterEndpoint("example", new()
{
ClusterId = "cls-fdy7hm1q",
ClusterIntranet = true,
ClusterIntranetDomain = "intranet_demo.com",
ClusterIntranetSubnetId = "subnet-7nl0sswi",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.KubernetesClusterEndpoint;
import com.pulumi.tencentcloud.KubernetesClusterEndpointArgs;
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 KubernetesClusterEndpoint("example", KubernetesClusterEndpointArgs.builder()
.clusterId("cls-fdy7hm1q")
.clusterIntranet(true)
.clusterIntranetDomain("intranet_demo.com")
.clusterIntranetSubnetId("subnet-7nl0sswi")
.build());
}
}
resources:
example:
type: tencentcloud:KubernetesClusterEndpoint
properties:
clusterId: cls-fdy7hm1q
clusterIntranet: true
clusterIntranetDomain: intranet_demo.com
clusterIntranetSubnetId: subnet-7nl0sswi
Open internet access for kubernetes cluster
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = new tencentcloud.KubernetesClusterEndpoint("example", {
clusterId: "cls-fdy7hm1q",
clusterInternet: true,
clusterInternetSecurityGroup: "sg-e6a8xxib",
clusterInternetDomain: "internet_demo.com",
extensiveParameters: JSON.stringify({
AddressIPVersion: "IPV4",
InternetAccessible: {
InternetChargeType: "TRAFFIC_POSTPAID_BY_HOUR",
InternetMaxBandwidthOut: 10,
},
}),
});
import pulumi
import json
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.KubernetesClusterEndpoint("example",
cluster_id="cls-fdy7hm1q",
cluster_internet=True,
cluster_internet_security_group="sg-e6a8xxib",
cluster_internet_domain="internet_demo.com",
extensive_parameters=json.dumps({
"AddressIPVersion": "IPV4",
"InternetAccessible": {
"InternetChargeType": "TRAFFIC_POSTPAID_BY_HOUR",
"InternetMaxBandwidthOut": 10,
},
}))
package main
import (
"encoding/json"
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
tmpJSON0, err := json.Marshal(map[string]interface{}{
"AddressIPVersion": "IPV4",
"InternetAccessible": map[string]interface{}{
"InternetChargeType": "TRAFFIC_POSTPAID_BY_HOUR",
"InternetMaxBandwidthOut": 10,
},
})
if err != nil {
return err
}
json0 := string(tmpJSON0)
_, err = tencentcloud.NewKubernetesClusterEndpoint(ctx, "example", &tencentcloud.KubernetesClusterEndpointArgs{
ClusterId: pulumi.String("cls-fdy7hm1q"),
ClusterInternet: pulumi.Bool(true),
ClusterInternetSecurityGroup: pulumi.String("sg-e6a8xxib"),
ClusterInternetDomain: pulumi.String("internet_demo.com"),
ExtensiveParameters: pulumi.String(json0),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var example = new Tencentcloud.KubernetesClusterEndpoint("example", new()
{
ClusterId = "cls-fdy7hm1q",
ClusterInternet = true,
ClusterInternetSecurityGroup = "sg-e6a8xxib",
ClusterInternetDomain = "internet_demo.com",
ExtensiveParameters = JsonSerializer.Serialize(new Dictionary<string, object?>
{
["AddressIPVersion"] = "IPV4",
["InternetAccessible"] = new Dictionary<string, object?>
{
["InternetChargeType"] = "TRAFFIC_POSTPAID_BY_HOUR",
["InternetMaxBandwidthOut"] = 10,
},
}),
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.KubernetesClusterEndpoint;
import com.pulumi.tencentcloud.KubernetesClusterEndpointArgs;
import static com.pulumi.codegen.internal.Serialization.*;
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 KubernetesClusterEndpoint("example", KubernetesClusterEndpointArgs.builder()
.clusterId("cls-fdy7hm1q")
.clusterInternet(true)
.clusterInternetSecurityGroup("sg-e6a8xxib")
.clusterInternetDomain("internet_demo.com")
.extensiveParameters(serializeJson(
jsonObject(
jsonProperty("AddressIPVersion", "IPV4"),
jsonProperty("InternetAccessible", jsonObject(
jsonProperty("InternetChargeType", "TRAFFIC_POSTPAID_BY_HOUR"),
jsonProperty("InternetMaxBandwidthOut", 10)
))
)))
.build());
}
}
resources:
example:
type: tencentcloud:KubernetesClusterEndpoint
properties:
clusterId: cls-fdy7hm1q
clusterInternet: true
clusterInternetSecurityGroup: sg-e6a8xxib
clusterInternetDomain: internet_demo.com
extensiveParameters:
fn::toJSON:
AddressIPVersion: IPV4
InternetAccessible:
InternetChargeType: TRAFFIC_POSTPAID_BY_HOUR
InternetMaxBandwidthOut: 10
Create KubernetesClusterEndpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KubernetesClusterEndpoint(name: string, args: KubernetesClusterEndpointArgs, opts?: CustomResourceOptions);
@overload
def KubernetesClusterEndpoint(resource_name: str,
args: KubernetesClusterEndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def KubernetesClusterEndpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[str] = None,
cluster_internet: Optional[bool] = None,
cluster_internet_domain: Optional[str] = None,
cluster_internet_security_group: Optional[str] = None,
cluster_intranet: Optional[bool] = None,
cluster_intranet_domain: Optional[str] = None,
cluster_intranet_subnet_id: Optional[str] = None,
extensive_parameters: Optional[str] = None,
kubernetes_cluster_endpoint_id: Optional[str] = None,
managed_cluster_internet_security_policies: Optional[Sequence[str]] = None)
func NewKubernetesClusterEndpoint(ctx *Context, name string, args KubernetesClusterEndpointArgs, opts ...ResourceOption) (*KubernetesClusterEndpoint, error)
public KubernetesClusterEndpoint(string name, KubernetesClusterEndpointArgs args, CustomResourceOptions? opts = null)
public KubernetesClusterEndpoint(String name, KubernetesClusterEndpointArgs args)
public KubernetesClusterEndpoint(String name, KubernetesClusterEndpointArgs args, CustomResourceOptions options)
type: tencentcloud:KubernetesClusterEndpoint
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 KubernetesClusterEndpointArgs
- 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 KubernetesClusterEndpointArgs
- 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 KubernetesClusterEndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KubernetesClusterEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KubernetesClusterEndpointArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
KubernetesClusterEndpoint 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 KubernetesClusterEndpoint resource accepts the following input properties:
- Cluster
Id string - Specify cluster ID.
- Cluster
Internet bool - Open internet access or not.
- Cluster
Internet stringDomain - Domain name for cluster Kube-apiserver internet access. Be careful if you modify value of this parameter, the cluster_external_endpoint value may be changed automatically too.
- Cluster
Internet stringSecurity Group - Specify security group, NOTE: This argument must not be empty if cluster internet enabled.
- Cluster
Intranet bool - Open intranet access or not.
- Cluster
Intranet stringDomain - Domain name for cluster Kube-apiserver intranet access. Be careful if you modify value of this parameter, the pgw_endpoint value may be changed automatically too.
- Cluster
Intranet stringSubnet Id - Subnet id who can access this independent cluster, this field must and can only set when
cluster_intranet
is true.cluster_intranet_subnet_id
can not modify once be set. - Extensive
Parameters string - The LB parameter. Only used for public network access.
- Kubernetes
Cluster stringEndpoint Id - ID of the resource.
- Managed
Cluster List<string>Internet Security Policies - this argument was deprecated, use
cluster_internet_security_group
instead. Security policies for managed cluster internet, like:'192.168.1.0/24' or '113.116.51.27', '0.0.0.0/0' means all. This field can only set when fieldcluster_deploy_type
is 'MANAGED_CLUSTER' andcluster_internet
is true.managed_cluster_internet_security_policies
can not delete or empty once be set.
- Cluster
Id string - Specify cluster ID.
- Cluster
Internet bool - Open internet access or not.
- Cluster
Internet stringDomain - Domain name for cluster Kube-apiserver internet access. Be careful if you modify value of this parameter, the cluster_external_endpoint value may be changed automatically too.
- Cluster
Internet stringSecurity Group - Specify security group, NOTE: This argument must not be empty if cluster internet enabled.
- Cluster
Intranet bool - Open intranet access or not.
- Cluster
Intranet stringDomain - Domain name for cluster Kube-apiserver intranet access. Be careful if you modify value of this parameter, the pgw_endpoint value may be changed automatically too.
- Cluster
Intranet stringSubnet Id - Subnet id who can access this independent cluster, this field must and can only set when
cluster_intranet
is true.cluster_intranet_subnet_id
can not modify once be set. - Extensive
Parameters string - The LB parameter. Only used for public network access.
- Kubernetes
Cluster stringEndpoint Id - ID of the resource.
- Managed
Cluster []stringInternet Security Policies - this argument was deprecated, use
cluster_internet_security_group
instead. Security policies for managed cluster internet, like:'192.168.1.0/24' or '113.116.51.27', '0.0.0.0/0' means all. This field can only set when fieldcluster_deploy_type
is 'MANAGED_CLUSTER' andcluster_internet
is true.managed_cluster_internet_security_policies
can not delete or empty once be set.
- cluster
Id String - Specify cluster ID.
- cluster
Internet Boolean - Open internet access or not.
- cluster
Internet StringDomain - Domain name for cluster Kube-apiserver internet access. Be careful if you modify value of this parameter, the cluster_external_endpoint value may be changed automatically too.
- cluster
Internet StringSecurity Group - Specify security group, NOTE: This argument must not be empty if cluster internet enabled.
- cluster
Intranet Boolean - Open intranet access or not.
- cluster
Intranet StringDomain - Domain name for cluster Kube-apiserver intranet access. Be careful if you modify value of this parameter, the pgw_endpoint value may be changed automatically too.
- cluster
Intranet StringSubnet Id - Subnet id who can access this independent cluster, this field must and can only set when
cluster_intranet
is true.cluster_intranet_subnet_id
can not modify once be set. - extensive
Parameters String - The LB parameter. Only used for public network access.
- kubernetes
Cluster StringEndpoint Id - ID of the resource.
- managed
Cluster List<String>Internet Security Policies - this argument was deprecated, use
cluster_internet_security_group
instead. Security policies for managed cluster internet, like:'192.168.1.0/24' or '113.116.51.27', '0.0.0.0/0' means all. This field can only set when fieldcluster_deploy_type
is 'MANAGED_CLUSTER' andcluster_internet
is true.managed_cluster_internet_security_policies
can not delete or empty once be set.
- cluster
Id string - Specify cluster ID.
- cluster
Internet boolean - Open internet access or not.
- cluster
Internet stringDomain - Domain name for cluster Kube-apiserver internet access. Be careful if you modify value of this parameter, the cluster_external_endpoint value may be changed automatically too.
- cluster
Internet stringSecurity Group - Specify security group, NOTE: This argument must not be empty if cluster internet enabled.
- cluster
Intranet boolean - Open intranet access or not.
- cluster
Intranet stringDomain - Domain name for cluster Kube-apiserver intranet access. Be careful if you modify value of this parameter, the pgw_endpoint value may be changed automatically too.
- cluster
Intranet stringSubnet Id - Subnet id who can access this independent cluster, this field must and can only set when
cluster_intranet
is true.cluster_intranet_subnet_id
can not modify once be set. - extensive
Parameters string - The LB parameter. Only used for public network access.
- kubernetes
Cluster stringEndpoint Id - ID of the resource.
- managed
Cluster string[]Internet Security Policies - this argument was deprecated, use
cluster_internet_security_group
instead. Security policies for managed cluster internet, like:'192.168.1.0/24' or '113.116.51.27', '0.0.0.0/0' means all. This field can only set when fieldcluster_deploy_type
is 'MANAGED_CLUSTER' andcluster_internet
is true.managed_cluster_internet_security_policies
can not delete or empty once be set.
- cluster_
id str - Specify cluster ID.
- cluster_
internet bool - Open internet access or not.
- cluster_
internet_ strdomain - Domain name for cluster Kube-apiserver internet access. Be careful if you modify value of this parameter, the cluster_external_endpoint value may be changed automatically too.
- cluster_
internet_ strsecurity_ group - Specify security group, NOTE: This argument must not be empty if cluster internet enabled.
- cluster_
intranet bool - Open intranet access or not.
- cluster_
intranet_ strdomain - Domain name for cluster Kube-apiserver intranet access. Be careful if you modify value of this parameter, the pgw_endpoint value may be changed automatically too.
- cluster_
intranet_ strsubnet_ id - Subnet id who can access this independent cluster, this field must and can only set when
cluster_intranet
is true.cluster_intranet_subnet_id
can not modify once be set. - extensive_
parameters str - The LB parameter. Only used for public network access.
- kubernetes_
cluster_ strendpoint_ id - ID of the resource.
- managed_
cluster_ Sequence[str]internet_ security_ policies - this argument was deprecated, use
cluster_internet_security_group
instead. Security policies for managed cluster internet, like:'192.168.1.0/24' or '113.116.51.27', '0.0.0.0/0' means all. This field can only set when fieldcluster_deploy_type
is 'MANAGED_CLUSTER' andcluster_internet
is true.managed_cluster_internet_security_policies
can not delete or empty once be set.
- cluster
Id String - Specify cluster ID.
- cluster
Internet Boolean - Open internet access or not.
- cluster
Internet StringDomain - Domain name for cluster Kube-apiserver internet access. Be careful if you modify value of this parameter, the cluster_external_endpoint value may be changed automatically too.
- cluster
Internet StringSecurity Group - Specify security group, NOTE: This argument must not be empty if cluster internet enabled.
- cluster
Intranet Boolean - Open intranet access or not.
- cluster
Intranet StringDomain - Domain name for cluster Kube-apiserver intranet access. Be careful if you modify value of this parameter, the pgw_endpoint value may be changed automatically too.
- cluster
Intranet StringSubnet Id - Subnet id who can access this independent cluster, this field must and can only set when
cluster_intranet
is true.cluster_intranet_subnet_id
can not modify once be set. - extensive
Parameters String - The LB parameter. Only used for public network access.
- kubernetes
Cluster StringEndpoint Id - ID of the resource.
- managed
Cluster List<String>Internet Security Policies - this argument was deprecated, use
cluster_internet_security_group
instead. Security policies for managed cluster internet, like:'192.168.1.0/24' or '113.116.51.27', '0.0.0.0/0' means all. This field can only set when fieldcluster_deploy_type
is 'MANAGED_CLUSTER' andcluster_internet
is true.managed_cluster_internet_security_policies
can not delete or empty once be set.
Outputs
All input properties are implicitly available as output properties. Additionally, the KubernetesClusterEndpoint resource produces the following output properties:
- string
- The certificate used for access.
- Cluster
Deploy stringType - Cluster deploy type of
MANAGED_CLUSTER
orINDEPENDENT_CLUSTER
. - Cluster
External stringEndpoint - External network address to access.
- Domain string
- Domain name for access.
- Id string
- The provider-assigned unique ID for this managed resource.
- Kube
Config string - The Intranet address used for access.
- Kube
Config stringIntranet - Kubernetes config of private network.
- Password string
- Password of account.
- Pgw
Endpoint string - The Intranet address used for access.
- User
Name string - User name of account.
- string
- The certificate used for access.
- Cluster
Deploy stringType - Cluster deploy type of
MANAGED_CLUSTER
orINDEPENDENT_CLUSTER
. - Cluster
External stringEndpoint - External network address to access.
- Domain string
- Domain name for access.
- Id string
- The provider-assigned unique ID for this managed resource.
- Kube
Config string - The Intranet address used for access.
- Kube
Config stringIntranet - Kubernetes config of private network.
- Password string
- Password of account.
- Pgw
Endpoint string - The Intranet address used for access.
- User
Name string - User name of account.
- String
- The certificate used for access.
- cluster
Deploy StringType - Cluster deploy type of
MANAGED_CLUSTER
orINDEPENDENT_CLUSTER
. - cluster
External StringEndpoint - External network address to access.
- domain String
- Domain name for access.
- id String
- The provider-assigned unique ID for this managed resource.
- kube
Config String - The Intranet address used for access.
- kube
Config StringIntranet - Kubernetes config of private network.
- password String
- Password of account.
- pgw
Endpoint String - The Intranet address used for access.
- user
Name String - User name of account.
- string
- The certificate used for access.
- cluster
Deploy stringType - Cluster deploy type of
MANAGED_CLUSTER
orINDEPENDENT_CLUSTER
. - cluster
External stringEndpoint - External network address to access.
- domain string
- Domain name for access.
- id string
- The provider-assigned unique ID for this managed resource.
- kube
Config string - The Intranet address used for access.
- kube
Config stringIntranet - Kubernetes config of private network.
- password string
- Password of account.
- pgw
Endpoint string - The Intranet address used for access.
- user
Name string - User name of account.
- str
- The certificate used for access.
- cluster_
deploy_ strtype - Cluster deploy type of
MANAGED_CLUSTER
orINDEPENDENT_CLUSTER
. - cluster_
external_ strendpoint - External network address to access.
- domain str
- Domain name for access.
- id str
- The provider-assigned unique ID for this managed resource.
- kube_
config str - The Intranet address used for access.
- kube_
config_ strintranet - Kubernetes config of private network.
- password str
- Password of account.
- pgw_
endpoint str - The Intranet address used for access.
- user_
name str - User name of account.
- String
- The certificate used for access.
- cluster
Deploy StringType - Cluster deploy type of
MANAGED_CLUSTER
orINDEPENDENT_CLUSTER
. - cluster
External StringEndpoint - External network address to access.
- domain String
- Domain name for access.
- id String
- The provider-assigned unique ID for this managed resource.
- kube
Config String - The Intranet address used for access.
- kube
Config StringIntranet - Kubernetes config of private network.
- password String
- Password of account.
- pgw
Endpoint String - The Intranet address used for access.
- user
Name String - User name of account.
Look up Existing KubernetesClusterEndpoint Resource
Get an existing KubernetesClusterEndpoint 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?: KubernetesClusterEndpointState, opts?: CustomResourceOptions): KubernetesClusterEndpoint
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
certification_authority: Optional[str] = None,
cluster_deploy_type: Optional[str] = None,
cluster_external_endpoint: Optional[str] = None,
cluster_id: Optional[str] = None,
cluster_internet: Optional[bool] = None,
cluster_internet_domain: Optional[str] = None,
cluster_internet_security_group: Optional[str] = None,
cluster_intranet: Optional[bool] = None,
cluster_intranet_domain: Optional[str] = None,
cluster_intranet_subnet_id: Optional[str] = None,
domain: Optional[str] = None,
extensive_parameters: Optional[str] = None,
kube_config: Optional[str] = None,
kube_config_intranet: Optional[str] = None,
kubernetes_cluster_endpoint_id: Optional[str] = None,
managed_cluster_internet_security_policies: Optional[Sequence[str]] = None,
password: Optional[str] = None,
pgw_endpoint: Optional[str] = None,
user_name: Optional[str] = None) -> KubernetesClusterEndpoint
func GetKubernetesClusterEndpoint(ctx *Context, name string, id IDInput, state *KubernetesClusterEndpointState, opts ...ResourceOption) (*KubernetesClusterEndpoint, error)
public static KubernetesClusterEndpoint Get(string name, Input<string> id, KubernetesClusterEndpointState? state, CustomResourceOptions? opts = null)
public static KubernetesClusterEndpoint get(String name, Output<String> id, KubernetesClusterEndpointState state, CustomResourceOptions options)
resources: _: type: tencentcloud:KubernetesClusterEndpoint 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.
- string
- The certificate used for access.
- Cluster
Deploy stringType - Cluster deploy type of
MANAGED_CLUSTER
orINDEPENDENT_CLUSTER
. - Cluster
External stringEndpoint - External network address to access.
- Cluster
Id string - Specify cluster ID.
- Cluster
Internet bool - Open internet access or not.
- Cluster
Internet stringDomain - Domain name for cluster Kube-apiserver internet access. Be careful if you modify value of this parameter, the cluster_external_endpoint value may be changed automatically too.
- Cluster
Internet stringSecurity Group - Specify security group, NOTE: This argument must not be empty if cluster internet enabled.
- Cluster
Intranet bool - Open intranet access or not.
- Cluster
Intranet stringDomain - Domain name for cluster Kube-apiserver intranet access. Be careful if you modify value of this parameter, the pgw_endpoint value may be changed automatically too.
- Cluster
Intranet stringSubnet Id - Subnet id who can access this independent cluster, this field must and can only set when
cluster_intranet
is true.cluster_intranet_subnet_id
can not modify once be set. - Domain string
- Domain name for access.
- Extensive
Parameters string - The LB parameter. Only used for public network access.
- Kube
Config string - The Intranet address used for access.
- Kube
Config stringIntranet - Kubernetes config of private network.
- Kubernetes
Cluster stringEndpoint Id - ID of the resource.
- Managed
Cluster List<string>Internet Security Policies - this argument was deprecated, use
cluster_internet_security_group
instead. Security policies for managed cluster internet, like:'192.168.1.0/24' or '113.116.51.27', '0.0.0.0/0' means all. This field can only set when fieldcluster_deploy_type
is 'MANAGED_CLUSTER' andcluster_internet
is true.managed_cluster_internet_security_policies
can not delete or empty once be set. - Password string
- Password of account.
- Pgw
Endpoint string - The Intranet address used for access.
- User
Name string - User name of account.
- string
- The certificate used for access.
- Cluster
Deploy stringType - Cluster deploy type of
MANAGED_CLUSTER
orINDEPENDENT_CLUSTER
. - Cluster
External stringEndpoint - External network address to access.
- Cluster
Id string - Specify cluster ID.
- Cluster
Internet bool - Open internet access or not.
- Cluster
Internet stringDomain - Domain name for cluster Kube-apiserver internet access. Be careful if you modify value of this parameter, the cluster_external_endpoint value may be changed automatically too.
- Cluster
Internet stringSecurity Group - Specify security group, NOTE: This argument must not be empty if cluster internet enabled.
- Cluster
Intranet bool - Open intranet access or not.
- Cluster
Intranet stringDomain - Domain name for cluster Kube-apiserver intranet access. Be careful if you modify value of this parameter, the pgw_endpoint value may be changed automatically too.
- Cluster
Intranet stringSubnet Id - Subnet id who can access this independent cluster, this field must and can only set when
cluster_intranet
is true.cluster_intranet_subnet_id
can not modify once be set. - Domain string
- Domain name for access.
- Extensive
Parameters string - The LB parameter. Only used for public network access.
- Kube
Config string - The Intranet address used for access.
- Kube
Config stringIntranet - Kubernetes config of private network.
- Kubernetes
Cluster stringEndpoint Id - ID of the resource.
- Managed
Cluster []stringInternet Security Policies - this argument was deprecated, use
cluster_internet_security_group
instead. Security policies for managed cluster internet, like:'192.168.1.0/24' or '113.116.51.27', '0.0.0.0/0' means all. This field can only set when fieldcluster_deploy_type
is 'MANAGED_CLUSTER' andcluster_internet
is true.managed_cluster_internet_security_policies
can not delete or empty once be set. - Password string
- Password of account.
- Pgw
Endpoint string - The Intranet address used for access.
- User
Name string - User name of account.
- String
- The certificate used for access.
- cluster
Deploy StringType - Cluster deploy type of
MANAGED_CLUSTER
orINDEPENDENT_CLUSTER
. - cluster
External StringEndpoint - External network address to access.
- cluster
Id String - Specify cluster ID.
- cluster
Internet Boolean - Open internet access or not.
- cluster
Internet StringDomain - Domain name for cluster Kube-apiserver internet access. Be careful if you modify value of this parameter, the cluster_external_endpoint value may be changed automatically too.
- cluster
Internet StringSecurity Group - Specify security group, NOTE: This argument must not be empty if cluster internet enabled.
- cluster
Intranet Boolean - Open intranet access or not.
- cluster
Intranet StringDomain - Domain name for cluster Kube-apiserver intranet access. Be careful if you modify value of this parameter, the pgw_endpoint value may be changed automatically too.
- cluster
Intranet StringSubnet Id - Subnet id who can access this independent cluster, this field must and can only set when
cluster_intranet
is true.cluster_intranet_subnet_id
can not modify once be set. - domain String
- Domain name for access.
- extensive
Parameters String - The LB parameter. Only used for public network access.
- kube
Config String - The Intranet address used for access.
- kube
Config StringIntranet - Kubernetes config of private network.
- kubernetes
Cluster StringEndpoint Id - ID of the resource.
- managed
Cluster List<String>Internet Security Policies - this argument was deprecated, use
cluster_internet_security_group
instead. Security policies for managed cluster internet, like:'192.168.1.0/24' or '113.116.51.27', '0.0.0.0/0' means all. This field can only set when fieldcluster_deploy_type
is 'MANAGED_CLUSTER' andcluster_internet
is true.managed_cluster_internet_security_policies
can not delete or empty once be set. - password String
- Password of account.
- pgw
Endpoint String - The Intranet address used for access.
- user
Name String - User name of account.
- string
- The certificate used for access.
- cluster
Deploy stringType - Cluster deploy type of
MANAGED_CLUSTER
orINDEPENDENT_CLUSTER
. - cluster
External stringEndpoint - External network address to access.
- cluster
Id string - Specify cluster ID.
- cluster
Internet boolean - Open internet access or not.
- cluster
Internet stringDomain - Domain name for cluster Kube-apiserver internet access. Be careful if you modify value of this parameter, the cluster_external_endpoint value may be changed automatically too.
- cluster
Internet stringSecurity Group - Specify security group, NOTE: This argument must not be empty if cluster internet enabled.
- cluster
Intranet boolean - Open intranet access or not.
- cluster
Intranet stringDomain - Domain name for cluster Kube-apiserver intranet access. Be careful if you modify value of this parameter, the pgw_endpoint value may be changed automatically too.
- cluster
Intranet stringSubnet Id - Subnet id who can access this independent cluster, this field must and can only set when
cluster_intranet
is true.cluster_intranet_subnet_id
can not modify once be set. - domain string
- Domain name for access.
- extensive
Parameters string - The LB parameter. Only used for public network access.
- kube
Config string - The Intranet address used for access.
- kube
Config stringIntranet - Kubernetes config of private network.
- kubernetes
Cluster stringEndpoint Id - ID of the resource.
- managed
Cluster string[]Internet Security Policies - this argument was deprecated, use
cluster_internet_security_group
instead. Security policies for managed cluster internet, like:'192.168.1.0/24' or '113.116.51.27', '0.0.0.0/0' means all. This field can only set when fieldcluster_deploy_type
is 'MANAGED_CLUSTER' andcluster_internet
is true.managed_cluster_internet_security_policies
can not delete or empty once be set. - password string
- Password of account.
- pgw
Endpoint string - The Intranet address used for access.
- user
Name string - User name of account.
- str
- The certificate used for access.
- cluster_
deploy_ strtype - Cluster deploy type of
MANAGED_CLUSTER
orINDEPENDENT_CLUSTER
. - cluster_
external_ strendpoint - External network address to access.
- cluster_
id str - Specify cluster ID.
- cluster_
internet bool - Open internet access or not.
- cluster_
internet_ strdomain - Domain name for cluster Kube-apiserver internet access. Be careful if you modify value of this parameter, the cluster_external_endpoint value may be changed automatically too.
- cluster_
internet_ strsecurity_ group - Specify security group, NOTE: This argument must not be empty if cluster internet enabled.
- cluster_
intranet bool - Open intranet access or not.
- cluster_
intranet_ strdomain - Domain name for cluster Kube-apiserver intranet access. Be careful if you modify value of this parameter, the pgw_endpoint value may be changed automatically too.
- cluster_
intranet_ strsubnet_ id - Subnet id who can access this independent cluster, this field must and can only set when
cluster_intranet
is true.cluster_intranet_subnet_id
can not modify once be set. - domain str
- Domain name for access.
- extensive_
parameters str - The LB parameter. Only used for public network access.
- kube_
config str - The Intranet address used for access.
- kube_
config_ strintranet - Kubernetes config of private network.
- kubernetes_
cluster_ strendpoint_ id - ID of the resource.
- managed_
cluster_ Sequence[str]internet_ security_ policies - this argument was deprecated, use
cluster_internet_security_group
instead. Security policies for managed cluster internet, like:'192.168.1.0/24' or '113.116.51.27', '0.0.0.0/0' means all. This field can only set when fieldcluster_deploy_type
is 'MANAGED_CLUSTER' andcluster_internet
is true.managed_cluster_internet_security_policies
can not delete or empty once be set. - password str
- Password of account.
- pgw_
endpoint str - The Intranet address used for access.
- user_
name str - User name of account.
- String
- The certificate used for access.
- cluster
Deploy StringType - Cluster deploy type of
MANAGED_CLUSTER
orINDEPENDENT_CLUSTER
. - cluster
External StringEndpoint - External network address to access.
- cluster
Id String - Specify cluster ID.
- cluster
Internet Boolean - Open internet access or not.
- cluster
Internet StringDomain - Domain name for cluster Kube-apiserver internet access. Be careful if you modify value of this parameter, the cluster_external_endpoint value may be changed automatically too.
- cluster
Internet StringSecurity Group - Specify security group, NOTE: This argument must not be empty if cluster internet enabled.
- cluster
Intranet Boolean - Open intranet access or not.
- cluster
Intranet StringDomain - Domain name for cluster Kube-apiserver intranet access. Be careful if you modify value of this parameter, the pgw_endpoint value may be changed automatically too.
- cluster
Intranet StringSubnet Id - Subnet id who can access this independent cluster, this field must and can only set when
cluster_intranet
is true.cluster_intranet_subnet_id
can not modify once be set. - domain String
- Domain name for access.
- extensive
Parameters String - The LB parameter. Only used for public network access.
- kube
Config String - The Intranet address used for access.
- kube
Config StringIntranet - Kubernetes config of private network.
- kubernetes
Cluster StringEndpoint Id - ID of the resource.
- managed
Cluster List<String>Internet Security Policies - this argument was deprecated, use
cluster_internet_security_group
instead. Security policies for managed cluster internet, like:'192.168.1.0/24' or '113.116.51.27', '0.0.0.0/0' means all. This field can only set when fieldcluster_deploy_type
is 'MANAGED_CLUSTER' andcluster_internet
is true.managed_cluster_internet_security_policies
can not delete or empty once be set. - password String
- Password of account.
- pgw
Endpoint String - The Intranet address used for access.
- user
Name String - User name of account.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.