1. Packages
  2. Ionoscloud Provider
  3. API Docs
  4. getK8sNodePool
ionoscloud 6.7.6 published on Monday, Apr 14, 2025 by ionos-cloud

ionoscloud.getK8sNodePool

Explore with Pulumi AI

ionoscloud logo
ionoscloud 6.7.6 published on Monday, Apr 14, 2025 by ionos-cloud

    The k8s Node Pool data source can be used to search for and return existing k8s Node Pools. If a single match is found, it will be returned. If your search results in multiple matches, an error will be returned. When this happens, please refine your search string so that it is specific enough to return only one result.

    Example Usage

    By ID

    import * as pulumi from "@pulumi/pulumi";
    import * as ionoscloud from "@pulumi/ionoscloud";
    
    const example = ionoscloud.getK8sNodePool({
        id: "k8s_nodepool_id",
        k8sClusterId: "k8s_cluster_id",
    });
    
    import pulumi
    import pulumi_ionoscloud as ionoscloud
    
    example = ionoscloud.get_k8s_node_pool(id="k8s_nodepool_id",
        k8s_cluster_id="k8s_cluster_id")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ionoscloud/v6/ionoscloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ionoscloud.LookupK8sNodePool(ctx, &ionoscloud.LookupK8sNodePoolArgs{
    			Id:           pulumi.StringRef("k8s_nodepool_id"),
    			K8sClusterId: "k8s_cluster_id",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ionoscloud = Pulumi.Ionoscloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Ionoscloud.GetK8sNodePool.Invoke(new()
        {
            Id = "k8s_nodepool_id",
            K8sClusterId = "k8s_cluster_id",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ionoscloud.IonoscloudFunctions;
    import com.pulumi.ionoscloud.inputs.GetK8sNodePoolArgs;
    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 example = IonoscloudFunctions.getK8sNodePool(GetK8sNodePoolArgs.builder()
                .id("k8s_nodepool_id")
                .k8sClusterId("k8s_cluster_id")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: ionoscloud:getK8sNodePool
          arguments:
            id: k8s_nodepool_id
            k8sClusterId: k8s_cluster_id
    

    By Name

    import * as pulumi from "@pulumi/pulumi";
    import * as ionoscloud from "@pulumi/ionoscloud";
    
    const example = ionoscloud.getK8sNodePool({
        k8sClusterId: "k8s_cluster_id",
        name: "k8s NodePool Example",
    });
    
    import pulumi
    import pulumi_ionoscloud as ionoscloud
    
    example = ionoscloud.get_k8s_node_pool(k8s_cluster_id="k8s_cluster_id",
        name="k8s NodePool Example")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ionoscloud/v6/ionoscloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ionoscloud.LookupK8sNodePool(ctx, &ionoscloud.LookupK8sNodePoolArgs{
    			K8sClusterId: "k8s_cluster_id",
    			Name:         pulumi.StringRef("k8s NodePool Example"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ionoscloud = Pulumi.Ionoscloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Ionoscloud.GetK8sNodePool.Invoke(new()
        {
            K8sClusterId = "k8s_cluster_id",
            Name = "k8s NodePool Example",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ionoscloud.IonoscloudFunctions;
    import com.pulumi.ionoscloud.inputs.GetK8sNodePoolArgs;
    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 example = IonoscloudFunctions.getK8sNodePool(GetK8sNodePoolArgs.builder()
                .k8sClusterId("k8s_cluster_id")
                .name("k8s NodePool Example")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: ionoscloud:getK8sNodePool
          arguments:
            k8sClusterId: k8s_cluster_id
            name: k8s NodePool Example
    

    Using getK8sNodePool

    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 getK8sNodePool(args: GetK8sNodePoolArgs, opts?: InvokeOptions): Promise<GetK8sNodePoolResult>
    function getK8sNodePoolOutput(args: GetK8sNodePoolOutputArgs, opts?: InvokeOptions): Output<GetK8sNodePoolResult>
    def get_k8s_node_pool(id: Optional[str] = None,
                          k8s_cluster_id: Optional[str] = None,
                          name: Optional[str] = None,
                          timeouts: Optional[GetK8sNodePoolTimeouts] = None,
                          opts: Optional[InvokeOptions] = None) -> GetK8sNodePoolResult
    def get_k8s_node_pool_output(id: Optional[pulumi.Input[str]] = None,
                          k8s_cluster_id: Optional[pulumi.Input[str]] = None,
                          name: Optional[pulumi.Input[str]] = None,
                          timeouts: Optional[pulumi.Input[GetK8sNodePoolTimeoutsArgs]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetK8sNodePoolResult]
    func LookupK8sNodePool(ctx *Context, args *LookupK8sNodePoolArgs, opts ...InvokeOption) (*LookupK8sNodePoolResult, error)
    func LookupK8sNodePoolOutput(ctx *Context, args *LookupK8sNodePoolOutputArgs, opts ...InvokeOption) LookupK8sNodePoolResultOutput

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

    public static class GetK8sNodePool 
    {
        public static Task<GetK8sNodePoolResult> InvokeAsync(GetK8sNodePoolArgs args, InvokeOptions? opts = null)
        public static Output<GetK8sNodePoolResult> Invoke(GetK8sNodePoolInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetK8sNodePoolResult> getK8sNodePool(GetK8sNodePoolArgs args, InvokeOptions options)
    public static Output<GetK8sNodePoolResult> getK8sNodePool(GetK8sNodePoolArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ionoscloud:index/getK8sNodePool:getK8sNodePool
      arguments:
        # arguments dictionary

    The following arguments are supported:

    K8sClusterId string
    K8s Cluster' UUID
    Id string

    ID of the node pool you want to search for.

    k8s_cluster_id and either name or id must be provided. If none, or both of name and id are provided, the datasource will return an error.

    Name string
    Name of an existing node pool that you want to search for.
    Timeouts GetK8sNodePoolTimeouts
    K8sClusterId string
    K8s Cluster' UUID
    Id string

    ID of the node pool you want to search for.

    k8s_cluster_id and either name or id must be provided. If none, or both of name and id are provided, the datasource will return an error.

    Name string
    Name of an existing node pool that you want to search for.
    Timeouts GetK8sNodePoolTimeouts
    k8sClusterId String
    K8s Cluster' UUID
    id String

    ID of the node pool you want to search for.

    k8s_cluster_id and either name or id must be provided. If none, or both of name and id are provided, the datasource will return an error.

    name String
    Name of an existing node pool that you want to search for.
    timeouts GetK8sNodePoolTimeouts
    k8sClusterId string
    K8s Cluster' UUID
    id string

    ID of the node pool you want to search for.

    k8s_cluster_id and either name or id must be provided. If none, or both of name and id are provided, the datasource will return an error.

    name string
    Name of an existing node pool that you want to search for.
    timeouts GetK8sNodePoolTimeouts
    k8s_cluster_id str
    K8s Cluster' UUID
    id str

    ID of the node pool you want to search for.

    k8s_cluster_id and either name or id must be provided. If none, or both of name and id are provided, the datasource will return an error.

    name str
    Name of an existing node pool that you want to search for.
    timeouts GetK8sNodePoolTimeouts
    k8sClusterId String
    K8s Cluster' UUID
    id String

    ID of the node pool you want to search for.

    k8s_cluster_id and either name or id must be provided. If none, or both of name and id are provided, the datasource will return an error.

    name String
    Name of an existing node pool that you want to search for.
    timeouts Property Map

    getK8sNodePool Result

    The following output properties are available:

    Annotations Dictionary<string, string>
    A map of annotations in the form of key > value
    AutoScalings List<GetK8sNodePoolAutoScaling>
    The range defining the minimum and maximum number of worker nodes that the managed node group can scale in
    AvailabilityZone string
    The compute availability zone in which the nodes should exist
    AvailableUpgradeVersions List<string>
    A list of kubernetes versions available for upgrade
    CoresCount double
    CPU cores count
    CpuFamily string
    CPU Family
    DatacenterId string
    The UUID of the VDC
    Id string
    The LAN ID of an existing LAN at the related datacenter
    K8sClusterId string
    ID of the cluster this node pool is part of
    K8sVersion string
    The kubernetes version
    Labels Dictionary<string, string>
    A map of labels in the form of key > value
    Lans List<GetK8sNodePoolLan>
    A list of Local Area Networks the node pool is a part of
    MaintenanceWindows List<GetK8sNodePoolMaintenanceWindow>
    A maintenance window comprise of a day of the week and a time for maintenance to be allowed
    Name string
    name of the node pool
    NodeCount double
    The number of nodes in this node pool
    PublicIps List<string>
    The list of fixed IPs associated with this node pool
    RamSize double
    The amount of RAM in MB
    ServerType string
    The server type for the compute engine
    State string
    one of "AVAILABLE", "INACTIVE", "BUSY", "DEPLOYING", "ACTIVE", "FAILED", "SUSPENDED", "FAILED_SUSPENDED", "UPDATING", "FAILED_UPDATING", "DESTROYING", "FAILED_DESTROYING", "TERMINATED"
    StorageSize double
    The size of the volume in GB. The size should be greater than 10GB.
    StorageType string
    HDD or SDD
    Timeouts GetK8sNodePoolTimeouts
    Annotations map[string]string
    A map of annotations in the form of key > value
    AutoScalings []GetK8sNodePoolAutoScaling
    The range defining the minimum and maximum number of worker nodes that the managed node group can scale in
    AvailabilityZone string
    The compute availability zone in which the nodes should exist
    AvailableUpgradeVersions []string
    A list of kubernetes versions available for upgrade
    CoresCount float64
    CPU cores count
    CpuFamily string
    CPU Family
    DatacenterId string
    The UUID of the VDC
    Id string
    The LAN ID of an existing LAN at the related datacenter
    K8sClusterId string
    ID of the cluster this node pool is part of
    K8sVersion string
    The kubernetes version
    Labels map[string]string
    A map of labels in the form of key > value
    Lans []GetK8sNodePoolLan
    A list of Local Area Networks the node pool is a part of
    MaintenanceWindows []GetK8sNodePoolMaintenanceWindow
    A maintenance window comprise of a day of the week and a time for maintenance to be allowed
    Name string
    name of the node pool
    NodeCount float64
    The number of nodes in this node pool
    PublicIps []string
    The list of fixed IPs associated with this node pool
    RamSize float64
    The amount of RAM in MB
    ServerType string
    The server type for the compute engine
    State string
    one of "AVAILABLE", "INACTIVE", "BUSY", "DEPLOYING", "ACTIVE", "FAILED", "SUSPENDED", "FAILED_SUSPENDED", "UPDATING", "FAILED_UPDATING", "DESTROYING", "FAILED_DESTROYING", "TERMINATED"
    StorageSize float64
    The size of the volume in GB. The size should be greater than 10GB.
    StorageType string
    HDD or SDD
    Timeouts GetK8sNodePoolTimeouts
    annotations Map<String,String>
    A map of annotations in the form of key > value
    autoScalings List<GetK8sNodePoolAutoScaling>
    The range defining the minimum and maximum number of worker nodes that the managed node group can scale in
    availabilityZone String
    The compute availability zone in which the nodes should exist
    availableUpgradeVersions List<String>
    A list of kubernetes versions available for upgrade
    coresCount Double
    CPU cores count
    cpuFamily String
    CPU Family
    datacenterId String
    The UUID of the VDC
    id String
    The LAN ID of an existing LAN at the related datacenter
    k8sClusterId String
    ID of the cluster this node pool is part of
    k8sVersion String
    The kubernetes version
    labels Map<String,String>
    A map of labels in the form of key > value
    lans List<GetK8sNodePoolLan>
    A list of Local Area Networks the node pool is a part of
    maintenanceWindows List<GetK8sNodePoolMaintenanceWindow>
    A maintenance window comprise of a day of the week and a time for maintenance to be allowed
    name String
    name of the node pool
    nodeCount Double
    The number of nodes in this node pool
    publicIps List<String>
    The list of fixed IPs associated with this node pool
    ramSize Double
    The amount of RAM in MB
    serverType String
    The server type for the compute engine
    state String
    one of "AVAILABLE", "INACTIVE", "BUSY", "DEPLOYING", "ACTIVE", "FAILED", "SUSPENDED", "FAILED_SUSPENDED", "UPDATING", "FAILED_UPDATING", "DESTROYING", "FAILED_DESTROYING", "TERMINATED"
    storageSize Double
    The size of the volume in GB. The size should be greater than 10GB.
    storageType String
    HDD or SDD
    timeouts GetK8sNodePoolTimeouts
    annotations {[key: string]: string}
    A map of annotations in the form of key > value
    autoScalings GetK8sNodePoolAutoScaling[]
    The range defining the minimum and maximum number of worker nodes that the managed node group can scale in
    availabilityZone string
    The compute availability zone in which the nodes should exist
    availableUpgradeVersions string[]
    A list of kubernetes versions available for upgrade
    coresCount number
    CPU cores count
    cpuFamily string
    CPU Family
    datacenterId string
    The UUID of the VDC
    id string
    The LAN ID of an existing LAN at the related datacenter
    k8sClusterId string
    ID of the cluster this node pool is part of
    k8sVersion string
    The kubernetes version
    labels {[key: string]: string}
    A map of labels in the form of key > value
    lans GetK8sNodePoolLan[]
    A list of Local Area Networks the node pool is a part of
    maintenanceWindows GetK8sNodePoolMaintenanceWindow[]
    A maintenance window comprise of a day of the week and a time for maintenance to be allowed
    name string
    name of the node pool
    nodeCount number
    The number of nodes in this node pool
    publicIps string[]
    The list of fixed IPs associated with this node pool
    ramSize number
    The amount of RAM in MB
    serverType string
    The server type for the compute engine
    state string
    one of "AVAILABLE", "INACTIVE", "BUSY", "DEPLOYING", "ACTIVE", "FAILED", "SUSPENDED", "FAILED_SUSPENDED", "UPDATING", "FAILED_UPDATING", "DESTROYING", "FAILED_DESTROYING", "TERMINATED"
    storageSize number
    The size of the volume in GB. The size should be greater than 10GB.
    storageType string
    HDD or SDD
    timeouts GetK8sNodePoolTimeouts
    annotations Mapping[str, str]
    A map of annotations in the form of key > value
    auto_scalings Sequence[GetK8sNodePoolAutoScaling]
    The range defining the minimum and maximum number of worker nodes that the managed node group can scale in
    availability_zone str
    The compute availability zone in which the nodes should exist
    available_upgrade_versions Sequence[str]
    A list of kubernetes versions available for upgrade
    cores_count float
    CPU cores count
    cpu_family str
    CPU Family
    datacenter_id str
    The UUID of the VDC
    id str
    The LAN ID of an existing LAN at the related datacenter
    k8s_cluster_id str
    ID of the cluster this node pool is part of
    k8s_version str
    The kubernetes version
    labels Mapping[str, str]
    A map of labels in the form of key > value
    lans Sequence[GetK8sNodePoolLan]
    A list of Local Area Networks the node pool is a part of
    maintenance_windows Sequence[GetK8sNodePoolMaintenanceWindow]
    A maintenance window comprise of a day of the week and a time for maintenance to be allowed
    name str
    name of the node pool
    node_count float
    The number of nodes in this node pool
    public_ips Sequence[str]
    The list of fixed IPs associated with this node pool
    ram_size float
    The amount of RAM in MB
    server_type str
    The server type for the compute engine
    state str
    one of "AVAILABLE", "INACTIVE", "BUSY", "DEPLOYING", "ACTIVE", "FAILED", "SUSPENDED", "FAILED_SUSPENDED", "UPDATING", "FAILED_UPDATING", "DESTROYING", "FAILED_DESTROYING", "TERMINATED"
    storage_size float
    The size of the volume in GB. The size should be greater than 10GB.
    storage_type str
    HDD or SDD
    timeouts GetK8sNodePoolTimeouts
    annotations Map<String>
    A map of annotations in the form of key > value
    autoScalings List<Property Map>
    The range defining the minimum and maximum number of worker nodes that the managed node group can scale in
    availabilityZone String
    The compute availability zone in which the nodes should exist
    availableUpgradeVersions List<String>
    A list of kubernetes versions available for upgrade
    coresCount Number
    CPU cores count
    cpuFamily String
    CPU Family
    datacenterId String
    The UUID of the VDC
    id String
    The LAN ID of an existing LAN at the related datacenter
    k8sClusterId String
    ID of the cluster this node pool is part of
    k8sVersion String
    The kubernetes version
    labels Map<String>
    A map of labels in the form of key > value
    lans List<Property Map>
    A list of Local Area Networks the node pool is a part of
    maintenanceWindows List<Property Map>
    A maintenance window comprise of a day of the week and a time for maintenance to be allowed
    name String
    name of the node pool
    nodeCount Number
    The number of nodes in this node pool
    publicIps List<String>
    The list of fixed IPs associated with this node pool
    ramSize Number
    The amount of RAM in MB
    serverType String
    The server type for the compute engine
    state String
    one of "AVAILABLE", "INACTIVE", "BUSY", "DEPLOYING", "ACTIVE", "FAILED", "SUSPENDED", "FAILED_SUSPENDED", "UPDATING", "FAILED_UPDATING", "DESTROYING", "FAILED_DESTROYING", "TERMINATED"
    storageSize Number
    The size of the volume in GB. The size should be greater than 10GB.
    storageType String
    HDD or SDD
    timeouts Property Map

    Supporting Types

    GetK8sNodePoolAutoScaling

    MaxNodeCount double
    The maximum number of worker nodes that the node pool can scale to
    MinNodeCount double
    The minimum number of worker nodes the node pool can scale down to
    MaxNodeCount float64
    The maximum number of worker nodes that the node pool can scale to
    MinNodeCount float64
    The minimum number of worker nodes the node pool can scale down to
    maxNodeCount Double
    The maximum number of worker nodes that the node pool can scale to
    minNodeCount Double
    The minimum number of worker nodes the node pool can scale down to
    maxNodeCount number
    The maximum number of worker nodes that the node pool can scale to
    minNodeCount number
    The minimum number of worker nodes the node pool can scale down to
    max_node_count float
    The maximum number of worker nodes that the node pool can scale to
    min_node_count float
    The minimum number of worker nodes the node pool can scale down to
    maxNodeCount Number
    The maximum number of worker nodes that the node pool can scale to
    minNodeCount Number
    The minimum number of worker nodes the node pool can scale down to

    GetK8sNodePoolLan

    Dhcp bool
    Indicates if the Kubernetes Node Pool LAN will reserve an IP using DHCP
    Id double

    ID of the node pool you want to search for.

    k8s_cluster_id and either name or id must be provided. If none, or both of name and id are provided, the datasource will return an error.

    Routes List<GetK8sNodePoolLanRoute>
    An array of additional LANs attached to worker nodes
    Dhcp bool
    Indicates if the Kubernetes Node Pool LAN will reserve an IP using DHCP
    Id float64

    ID of the node pool you want to search for.

    k8s_cluster_id and either name or id must be provided. If none, or both of name and id are provided, the datasource will return an error.

    Routes []GetK8sNodePoolLanRoute
    An array of additional LANs attached to worker nodes
    dhcp Boolean
    Indicates if the Kubernetes Node Pool LAN will reserve an IP using DHCP
    id Double

    ID of the node pool you want to search for.

    k8s_cluster_id and either name or id must be provided. If none, or both of name and id are provided, the datasource will return an error.

    routes List<GetK8sNodePoolLanRoute>
    An array of additional LANs attached to worker nodes
    dhcp boolean
    Indicates if the Kubernetes Node Pool LAN will reserve an IP using DHCP
    id number

    ID of the node pool you want to search for.

    k8s_cluster_id and either name or id must be provided. If none, or both of name and id are provided, the datasource will return an error.

    routes GetK8sNodePoolLanRoute[]
    An array of additional LANs attached to worker nodes
    dhcp bool
    Indicates if the Kubernetes Node Pool LAN will reserve an IP using DHCP
    id float

    ID of the node pool you want to search for.

    k8s_cluster_id and either name or id must be provided. If none, or both of name and id are provided, the datasource will return an error.

    routes Sequence[GetK8sNodePoolLanRoute]
    An array of additional LANs attached to worker nodes
    dhcp Boolean
    Indicates if the Kubernetes Node Pool LAN will reserve an IP using DHCP
    id Number

    ID of the node pool you want to search for.

    k8s_cluster_id and either name or id must be provided. If none, or both of name and id are provided, the datasource will return an error.

    routes List<Property Map>
    An array of additional LANs attached to worker nodes

    GetK8sNodePoolLanRoute

    GatewayIp string
    IPv4 or IPv6 Gateway IP for the route
    Network string
    IPv4 or IPv6 CIDR to be routed via the interface
    GatewayIp string
    IPv4 or IPv6 Gateway IP for the route
    Network string
    IPv4 or IPv6 CIDR to be routed via the interface
    gatewayIp String
    IPv4 or IPv6 Gateway IP for the route
    network String
    IPv4 or IPv6 CIDR to be routed via the interface
    gatewayIp string
    IPv4 or IPv6 Gateway IP for the route
    network string
    IPv4 or IPv6 CIDR to be routed via the interface
    gateway_ip str
    IPv4 or IPv6 Gateway IP for the route
    network str
    IPv4 or IPv6 CIDR to be routed via the interface
    gatewayIp String
    IPv4 or IPv6 Gateway IP for the route
    network String
    IPv4 or IPv6 CIDR to be routed via the interface

    GetK8sNodePoolMaintenanceWindow

    DayOfTheWeek string
    Day of the week when maintenance is allowed
    Time string
    A clock time in the day when maintenance is allowed
    DayOfTheWeek string
    Day of the week when maintenance is allowed
    Time string
    A clock time in the day when maintenance is allowed
    dayOfTheWeek String
    Day of the week when maintenance is allowed
    time String
    A clock time in the day when maintenance is allowed
    dayOfTheWeek string
    Day of the week when maintenance is allowed
    time string
    A clock time in the day when maintenance is allowed
    day_of_the_week str
    Day of the week when maintenance is allowed
    time str
    A clock time in the day when maintenance is allowed
    dayOfTheWeek String
    Day of the week when maintenance is allowed
    time String
    A clock time in the day when maintenance is allowed

    GetK8sNodePoolTimeouts

    Create string
    Default string
    Delete string
    Update string
    Create string
    Default string
    Delete string
    Update string
    create String
    default_ String
    delete String
    update String
    create string
    default string
    delete string
    update string
    create String
    default String
    delete String
    update String

    Package Details

    Repository
    ionoscloud ionos-cloud/terraform-provider-ionoscloud
    License
    Notes
    This Pulumi package is based on the ionoscloud Terraform Provider.
    ionoscloud logo
    ionoscloud 6.7.6 published on Monday, Apr 14, 2025 by ionos-cloud