1. Packages
  2. Flexibleengine Provider
  3. API Docs
  4. getCceClusters
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud

flexibleengine.getCceClusters

Explore with Pulumi AI

flexibleengine logo
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud

    Use this data source to get a list of CCE clusters.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as flexibleengine from "@pulumi/flexibleengine";
    
    const config = new pulumi.Config();
    const clusterName = config.requireObject("clusterName");
    const clusters = flexibleengine.getCceClusters({
        name: clusterName,
        status: "Available",
    });
    
    import pulumi
    import pulumi_flexibleengine as flexibleengine
    
    config = pulumi.Config()
    cluster_name = config.require_object("clusterName")
    clusters = flexibleengine.get_cce_clusters(name=cluster_name,
        status="Available")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/flexibleengine/flexibleengine"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		clusterName := cfg.RequireObject("clusterName")
    		_, err := flexibleengine.GetCceClusters(ctx, &flexibleengine.GetCceClustersArgs{
    			Name:   pulumi.StringRef(clusterName),
    			Status: pulumi.StringRef("Available"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Flexibleengine = Pulumi.Flexibleengine;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var clusterName = config.RequireObject<dynamic>("clusterName");
        var clusters = Flexibleengine.GetCceClusters.Invoke(new()
        {
            Name = clusterName,
            Status = "Available",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.flexibleengine.FlexibleengineFunctions;
    import com.pulumi.flexibleengine.inputs.GetCceClustersArgs;
    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) {
            final var config = ctx.config();
            final var clusterName = config.get("clusterName");
            final var clusters = FlexibleengineFunctions.getCceClusters(GetCceClustersArgs.builder()
                .name(clusterName)
                .status("Available")
                .build());
    
        }
    }
    
    configuration:
      clusterName:
        type: dynamic
    variables:
      clusters:
        fn::invoke:
          function: flexibleengine:getCceClusters
          arguments:
            name: ${clusterName}
            status: Available
    

    Using getCceClusters

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getCceClusters(args: GetCceClustersArgs, opts?: InvokeOptions): Promise<GetCceClustersResult>
    function getCceClustersOutput(args: GetCceClustersOutputArgs, opts?: InvokeOptions): Output<GetCceClustersResult>
    def get_cce_clusters(cluster_id: Optional[str] = None,
                         cluster_type: Optional[str] = None,
                         enterprise_project_id: Optional[str] = None,
                         id: Optional[str] = None,
                         name: Optional[str] = None,
                         region: Optional[str] = None,
                         status: Optional[str] = None,
                         vpc_id: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetCceClustersResult
    def get_cce_clusters_output(cluster_id: Optional[pulumi.Input[str]] = None,
                         cluster_type: Optional[pulumi.Input[str]] = None,
                         enterprise_project_id: Optional[pulumi.Input[str]] = None,
                         id: Optional[pulumi.Input[str]] = None,
                         name: Optional[pulumi.Input[str]] = None,
                         region: Optional[pulumi.Input[str]] = None,
                         status: Optional[pulumi.Input[str]] = None,
                         vpc_id: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetCceClustersResult]
    func GetCceClusters(ctx *Context, args *GetCceClustersArgs, opts ...InvokeOption) (*GetCceClustersResult, error)
    func GetCceClustersOutput(ctx *Context, args *GetCceClustersOutputArgs, opts ...InvokeOption) GetCceClustersResultOutput

    > Note: This function is named GetCceClusters in the Go SDK.

    public static class GetCceClusters 
    {
        public static Task<GetCceClustersResult> InvokeAsync(GetCceClustersArgs args, InvokeOptions? opts = null)
        public static Output<GetCceClustersResult> Invoke(GetCceClustersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCceClustersResult> getCceClusters(GetCceClustersArgs args, InvokeOptions options)
    public static Output<GetCceClustersResult> getCceClusters(GetCceClustersArgs args, InvokeOptions options)
    
    fn::invoke:
      function: flexibleengine:index/getCceClusters:getCceClusters
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ClusterId string
    Specifies the ID of the cluster.
    ClusterType string
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    EnterpriseProjectId string
    Specifies the enterprise project ID of the cluster.
    Id string
    The ID of the cluster.
    Name string
    Specifies the name of the cluster.
    Region string
    Specifies the region in which to obtain the CCE clusters. If omitted, the provider-level region will be used.
    Status string
    Specifies the status of the cluster.
    VpcId string
    Specifies the VPC ID to which the cluster belongs.
    ClusterId string
    Specifies the ID of the cluster.
    ClusterType string
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    EnterpriseProjectId string
    Specifies the enterprise project ID of the cluster.
    Id string
    The ID of the cluster.
    Name string
    Specifies the name of the cluster.
    Region string
    Specifies the region in which to obtain the CCE clusters. If omitted, the provider-level region will be used.
    Status string
    Specifies the status of the cluster.
    VpcId string
    Specifies the VPC ID to which the cluster belongs.
    clusterId String
    Specifies the ID of the cluster.
    clusterType String
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    enterpriseProjectId String
    Specifies the enterprise project ID of the cluster.
    id String
    The ID of the cluster.
    name String
    Specifies the name of the cluster.
    region String
    Specifies the region in which to obtain the CCE clusters. If omitted, the provider-level region will be used.
    status String
    Specifies the status of the cluster.
    vpcId String
    Specifies the VPC ID to which the cluster belongs.
    clusterId string
    Specifies the ID of the cluster.
    clusterType string
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    enterpriseProjectId string
    Specifies the enterprise project ID of the cluster.
    id string
    The ID of the cluster.
    name string
    Specifies the name of the cluster.
    region string
    Specifies the region in which to obtain the CCE clusters. If omitted, the provider-level region will be used.
    status string
    Specifies the status of the cluster.
    vpcId string
    Specifies the VPC ID to which the cluster belongs.
    cluster_id str
    Specifies the ID of the cluster.
    cluster_type str
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    enterprise_project_id str
    Specifies the enterprise project ID of the cluster.
    id str
    The ID of the cluster.
    name str
    Specifies the name of the cluster.
    region str
    Specifies the region in which to obtain the CCE clusters. If omitted, the provider-level region will be used.
    status str
    Specifies the status of the cluster.
    vpc_id str
    Specifies the VPC ID to which the cluster belongs.
    clusterId String
    Specifies the ID of the cluster.
    clusterType String
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    enterpriseProjectId String
    Specifies the enterprise project ID of the cluster.
    id String
    The ID of the cluster.
    name String
    Specifies the name of the cluster.
    region String
    Specifies the region in which to obtain the CCE clusters. If omitted, the provider-level region will be used.
    status String
    Specifies the status of the cluster.
    vpcId String
    Specifies the VPC ID to which the cluster belongs.

    getCceClusters Result

    The following output properties are available:

    Clusters List<GetCceClustersCluster>
    Indicates a list of CCE clusters found. The clusters object structure is documented below.
    Id string
    The ID of the cluster.
    Ids List<string>
    Indicates a list of IDs of all CCE clusters found.
    Region string
    ClusterId string
    ClusterType string
    The type of the cluster. Possible values: VirtualMachine, ARM64.
    EnterpriseProjectId string
    The enterprise project ID of the CCE cluster.
    Name string
    The user name.
    Status string
    The status of the cluster.
    VpcId string
    The vpc ID of the cluster.
    Clusters []GetCceClustersCluster
    Indicates a list of CCE clusters found. The clusters object structure is documented below.
    Id string
    The ID of the cluster.
    Ids []string
    Indicates a list of IDs of all CCE clusters found.
    Region string
    ClusterId string
    ClusterType string
    The type of the cluster. Possible values: VirtualMachine, ARM64.
    EnterpriseProjectId string
    The enterprise project ID of the CCE cluster.
    Name string
    The user name.
    Status string
    The status of the cluster.
    VpcId string
    The vpc ID of the cluster.
    clusters List<GetCceClustersCluster>
    Indicates a list of CCE clusters found. The clusters object structure is documented below.
    id String
    The ID of the cluster.
    ids List<String>
    Indicates a list of IDs of all CCE clusters found.
    region String
    clusterId String
    clusterType String
    The type of the cluster. Possible values: VirtualMachine, ARM64.
    enterpriseProjectId String
    The enterprise project ID of the CCE cluster.
    name String
    The user name.
    status String
    The status of the cluster.
    vpcId String
    The vpc ID of the cluster.
    clusters GetCceClustersCluster[]
    Indicates a list of CCE clusters found. The clusters object structure is documented below.
    id string
    The ID of the cluster.
    ids string[]
    Indicates a list of IDs of all CCE clusters found.
    region string
    clusterId string
    clusterType string
    The type of the cluster. Possible values: VirtualMachine, ARM64.
    enterpriseProjectId string
    The enterprise project ID of the CCE cluster.
    name string
    The user name.
    status string
    The status of the cluster.
    vpcId string
    The vpc ID of the cluster.
    clusters Sequence[GetCceClustersCluster]
    Indicates a list of CCE clusters found. The clusters object structure is documented below.
    id str
    The ID of the cluster.
    ids Sequence[str]
    Indicates a list of IDs of all CCE clusters found.
    region str
    cluster_id str
    cluster_type str
    The type of the cluster. Possible values: VirtualMachine, ARM64.
    enterprise_project_id str
    The enterprise project ID of the CCE cluster.
    name str
    The user name.
    status str
    The status of the cluster.
    vpc_id str
    The vpc ID of the cluster.
    clusters List<Property Map>
    Indicates a list of CCE clusters found. The clusters object structure is documented below.
    id String
    The ID of the cluster.
    ids List<String>
    Indicates a list of IDs of all CCE clusters found.
    region String
    clusterId String
    clusterType String
    The type of the cluster. Possible values: VirtualMachine, ARM64.
    enterpriseProjectId String
    The enterprise project ID of the CCE cluster.
    name String
    The user name.
    status String
    The status of the cluster.
    vpcId String
    The vpc ID of the cluster.

    Supporting Types

    GetCceClustersCluster

    AuthenticationMode string
    The authentication mode of the cluster, possible values are x509 and rbac. Defaults to rbac.
    BillingMode double
    The charging mode of the cluster.
    CertificateClusters List<GetCceClustersClusterCertificateCluster>
    The certificate clusters. The certificate_clusters object structure is documented below.
    CertificateUsers List<GetCceClustersClusterCertificateUser>
    The certificate users The certificate_users object structure is documented below.
    ClusterType string
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    ClusterVersion string
    The version of the cluster.
    ContainerNetworkCidr string
    The container network segment.
    ContainerNetworkType string
    The container network type: overlay_l2 , underlay_ipvlan, vpc-router or eni.
    Description string
    The description of the cluster.
    Endpoints List<GetCceClustersClusterEndpoint>
    The access addresses of kube-apiserver in the cluster. The endpoints object structure is documented below.
    EniSubnetCidr string
    The ENI network segment.
    EniSubnetId string
    The ENI subnet ID.
    EnterpriseProjectId string
    Specifies the enterprise project ID of the cluster.
    FlavorId string
    The specification of the cluster.
    Id string
    The ID of the cluster.
    KubeConfigRaw string
    The raw Kubernetes config to be used by kubectl and other compatible tools.
    Masters List<GetCceClustersClusterMaster>
    The advanced configuration of master nodes.The masters object structure is documented below.
    Name string
    Specifies the name of the cluster.
    SecurityGroupId string
    The security group ID of the cluster.
    ServiceNetworkCidr string
    The service network segment.
    Status string
    Specifies the status of the cluster.
    SubnetId string
    The ID of the VPC Subnet used to create the node.
    VpcId string
    Specifies the VPC ID to which the cluster belongs.
    AuthenticationMode string
    The authentication mode of the cluster, possible values are x509 and rbac. Defaults to rbac.
    BillingMode float64
    The charging mode of the cluster.
    CertificateClusters []GetCceClustersClusterCertificateCluster
    The certificate clusters. The certificate_clusters object structure is documented below.
    CertificateUsers []GetCceClustersClusterCertificateUser
    The certificate users The certificate_users object structure is documented below.
    ClusterType string
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    ClusterVersion string
    The version of the cluster.
    ContainerNetworkCidr string
    The container network segment.
    ContainerNetworkType string
    The container network type: overlay_l2 , underlay_ipvlan, vpc-router or eni.
    Description string
    The description of the cluster.
    Endpoints []GetCceClustersClusterEndpoint
    The access addresses of kube-apiserver in the cluster. The endpoints object structure is documented below.
    EniSubnetCidr string
    The ENI network segment.
    EniSubnetId string
    The ENI subnet ID.
    EnterpriseProjectId string
    Specifies the enterprise project ID of the cluster.
    FlavorId string
    The specification of the cluster.
    Id string
    The ID of the cluster.
    KubeConfigRaw string
    The raw Kubernetes config to be used by kubectl and other compatible tools.
    Masters []GetCceClustersClusterMaster
    The advanced configuration of master nodes.The masters object structure is documented below.
    Name string
    Specifies the name of the cluster.
    SecurityGroupId string
    The security group ID of the cluster.
    ServiceNetworkCidr string
    The service network segment.
    Status string
    Specifies the status of the cluster.
    SubnetId string
    The ID of the VPC Subnet used to create the node.
    VpcId string
    Specifies the VPC ID to which the cluster belongs.
    authenticationMode String
    The authentication mode of the cluster, possible values are x509 and rbac. Defaults to rbac.
    billingMode Double
    The charging mode of the cluster.
    certificateClusters List<GetCceClustersClusterCertificateCluster>
    The certificate clusters. The certificate_clusters object structure is documented below.
    certificateUsers List<GetCceClustersClusterCertificateUser>
    The certificate users The certificate_users object structure is documented below.
    clusterType String
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    clusterVersion String
    The version of the cluster.
    containerNetworkCidr String
    The container network segment.
    containerNetworkType String
    The container network type: overlay_l2 , underlay_ipvlan, vpc-router or eni.
    description String
    The description of the cluster.
    endpoints List<GetCceClustersClusterEndpoint>
    The access addresses of kube-apiserver in the cluster. The endpoints object structure is documented below.
    eniSubnetCidr String
    The ENI network segment.
    eniSubnetId String
    The ENI subnet ID.
    enterpriseProjectId String
    Specifies the enterprise project ID of the cluster.
    flavorId String
    The specification of the cluster.
    id String
    The ID of the cluster.
    kubeConfigRaw String
    The raw Kubernetes config to be used by kubectl and other compatible tools.
    masters List<GetCceClustersClusterMaster>
    The advanced configuration of master nodes.The masters object structure is documented below.
    name String
    Specifies the name of the cluster.
    securityGroupId String
    The security group ID of the cluster.
    serviceNetworkCidr String
    The service network segment.
    status String
    Specifies the status of the cluster.
    subnetId String
    The ID of the VPC Subnet used to create the node.
    vpcId String
    Specifies the VPC ID to which the cluster belongs.
    authenticationMode string
    The authentication mode of the cluster, possible values are x509 and rbac. Defaults to rbac.
    billingMode number
    The charging mode of the cluster.
    certificateClusters GetCceClustersClusterCertificateCluster[]
    The certificate clusters. The certificate_clusters object structure is documented below.
    certificateUsers GetCceClustersClusterCertificateUser[]
    The certificate users The certificate_users object structure is documented below.
    clusterType string
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    clusterVersion string
    The version of the cluster.
    containerNetworkCidr string
    The container network segment.
    containerNetworkType string
    The container network type: overlay_l2 , underlay_ipvlan, vpc-router or eni.
    description string
    The description of the cluster.
    endpoints GetCceClustersClusterEndpoint[]
    The access addresses of kube-apiserver in the cluster. The endpoints object structure is documented below.
    eniSubnetCidr string
    The ENI network segment.
    eniSubnetId string
    The ENI subnet ID.
    enterpriseProjectId string
    Specifies the enterprise project ID of the cluster.
    flavorId string
    The specification of the cluster.
    id string
    The ID of the cluster.
    kubeConfigRaw string
    The raw Kubernetes config to be used by kubectl and other compatible tools.
    masters GetCceClustersClusterMaster[]
    The advanced configuration of master nodes.The masters object structure is documented below.
    name string
    Specifies the name of the cluster.
    securityGroupId string
    The security group ID of the cluster.
    serviceNetworkCidr string
    The service network segment.
    status string
    Specifies the status of the cluster.
    subnetId string
    The ID of the VPC Subnet used to create the node.
    vpcId string
    Specifies the VPC ID to which the cluster belongs.
    authentication_mode str
    The authentication mode of the cluster, possible values are x509 and rbac. Defaults to rbac.
    billing_mode float
    The charging mode of the cluster.
    certificate_clusters Sequence[GetCceClustersClusterCertificateCluster]
    The certificate clusters. The certificate_clusters object structure is documented below.
    certificate_users Sequence[GetCceClustersClusterCertificateUser]
    The certificate users The certificate_users object structure is documented below.
    cluster_type str
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    cluster_version str
    The version of the cluster.
    container_network_cidr str
    The container network segment.
    container_network_type str
    The container network type: overlay_l2 , underlay_ipvlan, vpc-router or eni.
    description str
    The description of the cluster.
    endpoints Sequence[GetCceClustersClusterEndpoint]
    The access addresses of kube-apiserver in the cluster. The endpoints object structure is documented below.
    eni_subnet_cidr str
    The ENI network segment.
    eni_subnet_id str
    The ENI subnet ID.
    enterprise_project_id str
    Specifies the enterprise project ID of the cluster.
    flavor_id str
    The specification of the cluster.
    id str
    The ID of the cluster.
    kube_config_raw str
    The raw Kubernetes config to be used by kubectl and other compatible tools.
    masters Sequence[GetCceClustersClusterMaster]
    The advanced configuration of master nodes.The masters object structure is documented below.
    name str
    Specifies the name of the cluster.
    security_group_id str
    The security group ID of the cluster.
    service_network_cidr str
    The service network segment.
    status str
    Specifies the status of the cluster.
    subnet_id str
    The ID of the VPC Subnet used to create the node.
    vpc_id str
    Specifies the VPC ID to which the cluster belongs.
    authenticationMode String
    The authentication mode of the cluster, possible values are x509 and rbac. Defaults to rbac.
    billingMode Number
    The charging mode of the cluster.
    certificateClusters List<Property Map>
    The certificate clusters. The certificate_clusters object structure is documented below.
    certificateUsers List<Property Map>
    The certificate users The certificate_users object structure is documented below.
    clusterType String
    Specifies the type of the cluster. Possible values: VirtualMachine, BareMetal.
    clusterVersion String
    The version of the cluster.
    containerNetworkCidr String
    The container network segment.
    containerNetworkType String
    The container network type: overlay_l2 , underlay_ipvlan, vpc-router or eni.
    description String
    The description of the cluster.
    endpoints List<Property Map>
    The access addresses of kube-apiserver in the cluster. The endpoints object structure is documented below.
    eniSubnetCidr String
    The ENI network segment.
    eniSubnetId String
    The ENI subnet ID.
    enterpriseProjectId String
    Specifies the enterprise project ID of the cluster.
    flavorId String
    The specification of the cluster.
    id String
    The ID of the cluster.
    kubeConfigRaw String
    The raw Kubernetes config to be used by kubectl and other compatible tools.
    masters List<Property Map>
    The advanced configuration of master nodes.The masters object structure is documented below.
    name String
    Specifies the name of the cluster.
    securityGroupId String
    The security group ID of the cluster.
    serviceNetworkCidr String
    The service network segment.
    status String
    Specifies the status of the cluster.
    subnetId String
    The ID of the VPC Subnet used to create the node.
    vpcId String
    Specifies the VPC ID to which the cluster belongs.

    GetCceClustersClusterCertificateCluster

    CertificateAuthorityData string
    The certificate data.
    Name string
    Specifies the name of the cluster.
    Server string
    The server IP address.
    CertificateAuthorityData string
    The certificate data.
    Name string
    Specifies the name of the cluster.
    Server string
    The server IP address.
    certificateAuthorityData String
    The certificate data.
    name String
    Specifies the name of the cluster.
    server String
    The server IP address.
    certificateAuthorityData string
    The certificate data.
    name string
    Specifies the name of the cluster.
    server string
    The server IP address.
    certificate_authority_data str
    The certificate data.
    name str
    Specifies the name of the cluster.
    server str
    The server IP address.
    certificateAuthorityData String
    The certificate data.
    name String
    Specifies the name of the cluster.
    server String
    The server IP address.

    GetCceClustersClusterCertificateUser

    ClientCertificateData string
    The client certificate data.
    ClientKeyData string
    The client key data.
    Name string
    Specifies the name of the cluster.
    ClientCertificateData string
    The client certificate data.
    ClientKeyData string
    The client key data.
    Name string
    Specifies the name of the cluster.
    clientCertificateData String
    The client certificate data.
    clientKeyData String
    The client key data.
    name String
    Specifies the name of the cluster.
    clientCertificateData string
    The client certificate data.
    clientKeyData string
    The client key data.
    name string
    Specifies the name of the cluster.
    client_certificate_data str
    The client certificate data.
    client_key_data str
    The client key data.
    name str
    Specifies the name of the cluster.
    clientCertificateData String
    The client certificate data.
    clientKeyData String
    The client key data.
    name String
    Specifies the name of the cluster.

    GetCceClustersClusterEndpoint

    Type string
    The type of the cluster access address.

    • Internal: The user's subnet access address.
    • External: The public network access address.
    Url string
    The URL of the cluster access address.
    Type string
    The type of the cluster access address.

    • Internal: The user's subnet access address.
    • External: The public network access address.
    Url string
    The URL of the cluster access address.
    type String
    The type of the cluster access address.

    • Internal: The user's subnet access address.
    • External: The public network access address.
    url String
    The URL of the cluster access address.
    type string
    The type of the cluster access address.

    • Internal: The user's subnet access address.
    • External: The public network access address.
    url string
    The URL of the cluster access address.
    type str
    The type of the cluster access address.

    • Internal: The user's subnet access address.
    • External: The public network access address.
    url str
    The URL of the cluster access address.
    type String
    The type of the cluster access address.

    • Internal: The user's subnet access address.
    • External: The public network access address.
    url String
    The URL of the cluster access address.

    GetCceClustersClusterMaster

    AvailabilityZone string
    The availability zone (AZ) of the master node.
    AvailabilityZone string
    The availability zone (AZ) of the master node.
    availabilityZone String
    The availability zone (AZ) of the master node.
    availabilityZone string
    The availability zone (AZ) of the master node.
    availability_zone str
    The availability zone (AZ) of the master node.
    availabilityZone String
    The availability zone (AZ) of the master node.

    Package Details

    Repository
    flexibleengine flexibleenginecloud/terraform-provider-flexibleengine
    License
    Notes
    This Pulumi package is based on the flexibleengine Terraform Provider.
    flexibleengine logo
    flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud