UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd
upcloud.getStorage
Explore with Pulumi AI
Provides information on UpCloud Block Storage devices.
Data source can be used to map storage to other resource based on the ID or just to read some other storage property like zone information. Storage types are: normal
, backup
, cdrom
, and template
.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as upcloud from "@pulumi/upcloud";
import * as upcloud from "@upcloud/pulumi-upcloud";
// Build server with your latest custom image
//
// Note that when applied new updated image will cause replacement of the old server (debian.example.tld)
// with the new server created based on the updated image.This can cause posible data loss
// if it hasn't been taken into account when planning the service.
const appImage = upcloud.getStorage({
type: "template",
nameRegex: "^app_image.*",
mostRecent: true,
});
const example = new upcloud.Server("example", {
hostname: "debian.example.tld",
zone: "fi-hel1",
networkInterfaces: [{
type: "public",
}],
template: {
storage: appImage.then(appImage => appImage.id),
},
});
// Build only new servers with your latest custom image
//
// Use the lifecycle meta-argument to ignore changes in server's template triggered by new image version
const example2 = new upcloud.Server("example2", {
hostname: "debian.example2.tld",
zone: "fi-hel1",
networkInterfaces: [{
type: "public",
}],
template: {
storage: appImage.then(appImage => appImage.id),
},
});
import pulumi
import pulumi_upcloud as upcloud
# Build server with your latest custom image
#
# Note that when applied new updated image will cause replacement of the old server (debian.example.tld)
# with the new server created based on the updated image.This can cause posible data loss
# if it hasn't been taken into account when planning the service.
app_image = upcloud.get_storage(type="template",
name_regex="^app_image.*",
most_recent=True)
example = upcloud.Server("example",
hostname="debian.example.tld",
zone="fi-hel1",
network_interfaces=[{
"type": "public",
}],
template={
"storage": app_image.id,
})
# Build only new servers with your latest custom image
#
# Use the lifecycle meta-argument to ignore changes in server's template triggered by new image version
example2 = upcloud.Server("example2",
hostname="debian.example2.tld",
zone="fi-hel1",
network_interfaces=[{
"type": "public",
}],
template={
"storage": app_image.id,
})
package main
import (
"github.com/UpCloudLtd/pulumi-upcloud/sdk/go/upcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Build server with your latest custom image
//
// Note that when applied new updated image will cause replacement of the old server (debian.example.tld)
// with the new server created based on the updated image.This can cause posible data loss
// if it hasn't been taken into account when planning the service.
appImage, err := upcloud.LookupStorage(ctx, &upcloud.LookupStorageArgs{
Type: pulumi.StringRef("template"),
NameRegex: pulumi.StringRef("^app_image.*"),
MostRecent: pulumi.BoolRef(true),
}, nil)
if err != nil {
return err
}
_, err = upcloud.NewServer(ctx, "example", &upcloud.ServerArgs{
Hostname: pulumi.String("debian.example.tld"),
Zone: pulumi.String("fi-hel1"),
NetworkInterfaces: upcloud.ServerNetworkInterfaceArray{
&upcloud.ServerNetworkInterfaceArgs{
Type: pulumi.String("public"),
},
},
Template: &upcloud.ServerTemplateArgs{
Storage: pulumi.String(appImage.Id),
},
})
if err != nil {
return err
}
// Build only new servers with your latest custom image
//
// Use the lifecycle meta-argument to ignore changes in server's template triggered by new image version
_, err = upcloud.NewServer(ctx, "example2", &upcloud.ServerArgs{
Hostname: pulumi.String("debian.example2.tld"),
Zone: pulumi.String("fi-hel1"),
NetworkInterfaces: upcloud.ServerNetworkInterfaceArray{
&upcloud.ServerNetworkInterfaceArgs{
Type: pulumi.String("public"),
},
},
Template: &upcloud.ServerTemplateArgs{
Storage: pulumi.String(appImage.Id),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using UpCloud = Pulumi.UpCloud;
using UpCloud = UpCloud.Pulumi.UpCloud;
return await Deployment.RunAsync(() =>
{
// Build server with your latest custom image
//
// Note that when applied new updated image will cause replacement of the old server (debian.example.tld)
// with the new server created based on the updated image.This can cause posible data loss
// if it hasn't been taken into account when planning the service.
var appImage = UpCloud.GetStorage.Invoke(new()
{
Type = "template",
NameRegex = "^app_image.*",
MostRecent = true,
});
var example = new UpCloud.Server("example", new()
{
Hostname = "debian.example.tld",
Zone = "fi-hel1",
NetworkInterfaces = new[]
{
new UpCloud.Inputs.ServerNetworkInterfaceArgs
{
Type = "public",
},
},
Template = new UpCloud.Inputs.ServerTemplateArgs
{
Storage = appImage.Apply(getStorageResult => getStorageResult.Id),
},
});
// Build only new servers with your latest custom image
//
// Use the lifecycle meta-argument to ignore changes in server's template triggered by new image version
var example2 = new UpCloud.Server("example2", new()
{
Hostname = "debian.example2.tld",
Zone = "fi-hel1",
NetworkInterfaces = new[]
{
new UpCloud.Inputs.ServerNetworkInterfaceArgs
{
Type = "public",
},
},
Template = new UpCloud.Inputs.ServerTemplateArgs
{
Storage = appImage.Apply(getStorageResult => getStorageResult.Id),
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.upcloud.UpcloudFunctions;
import com.pulumi.upcloud.inputs.GetStorageArgs;
import com.pulumi.upcloud.Server;
import com.pulumi.upcloud.ServerArgs;
import com.pulumi.upcloud.inputs.ServerNetworkInterfaceArgs;
import com.pulumi.upcloud.inputs.ServerTemplateArgs;
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) {
// Build server with your latest custom image
//
// Note that when applied new updated image will cause replacement of the old server (debian.example.tld)
// with the new server created based on the updated image.This can cause posible data loss
// if it hasn't been taken into account when planning the service.
final var appImage = UpcloudFunctions.getStorage(GetStorageArgs.builder()
.type("template")
.nameRegex("^app_image.*")
.mostRecent(true)
.build());
var example = new Server("example", ServerArgs.builder()
.hostname("debian.example.tld")
.zone("fi-hel1")
.networkInterfaces(ServerNetworkInterfaceArgs.builder()
.type("public")
.build())
.template(ServerTemplateArgs.builder()
.storage(appImage.applyValue(getStorageResult -> getStorageResult.id()))
.build())
.build());
// Build only new servers with your latest custom image
//
// Use the lifecycle meta-argument to ignore changes in server's template triggered by new image version
var example2 = new Server("example2", ServerArgs.builder()
.hostname("debian.example2.tld")
.zone("fi-hel1")
.networkInterfaces(ServerNetworkInterfaceArgs.builder()
.type("public")
.build())
.template(ServerTemplateArgs.builder()
.storage(appImage.applyValue(getStorageResult -> getStorageResult.id()))
.build())
.build());
}
}
resources:
example:
type: upcloud:Server
properties:
hostname: debian.example.tld
zone: fi-hel1
networkInterfaces:
- type: public
template:
storage: ${appImage.id}
# Build only new servers with your latest custom image
#
# Use the lifecycle meta-argument to ignore changes in server's template triggered by new image version
example2:
type: upcloud:Server
properties:
hostname: debian.example2.tld
zone: fi-hel1
networkInterfaces:
- type: public
template:
storage: ${appImage.id}
variables:
# Build server with your latest custom image
#
# Note that when applied new updated image will cause replacement of the old server (debian.example.tld)
# with the new server created based on the updated image.This can cause posible data loss
# if it hasn't been taken into account when planning the service.
appImage:
fn::invoke:
function: upcloud:getStorage
arguments:
type: template
nameRegex: ^app_image.*
mostRecent: true
Using getStorage
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 getStorage(args: GetStorageArgs, opts?: InvokeOptions): Promise<GetStorageResult>
function getStorageOutput(args: GetStorageOutputArgs, opts?: InvokeOptions): Output<GetStorageResult>
def get_storage(access_type: Optional[str] = None,
id: Optional[str] = None,
most_recent: Optional[bool] = None,
name: Optional[str] = None,
name_regex: Optional[str] = None,
title: Optional[str] = None,
type: Optional[str] = None,
zone: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetStorageResult
def get_storage_output(access_type: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
most_recent: Optional[pulumi.Input[bool]] = None,
name: Optional[pulumi.Input[str]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
title: Optional[pulumi.Input[str]] = None,
type: Optional[pulumi.Input[str]] = None,
zone: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetStorageResult]
func LookupStorage(ctx *Context, args *LookupStorageArgs, opts ...InvokeOption) (*LookupStorageResult, error)
func LookupStorageOutput(ctx *Context, args *LookupStorageOutputArgs, opts ...InvokeOption) LookupStorageResultOutput
> Note: This function is named LookupStorage
in the Go SDK.
public static class GetStorage
{
public static Task<GetStorageResult> InvokeAsync(GetStorageArgs args, InvokeOptions? opts = null)
public static Output<GetStorageResult> Invoke(GetStorageInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetStorageResult> getStorage(GetStorageArgs args, InvokeOptions options)
public static Output<GetStorageResult> getStorage(GetStorageArgs args, InvokeOptions options)
fn::invoke:
function: upcloud:index/getStorage:getStorage
arguments:
# arguments dictionary
The following arguments are supported:
- Access
Type string - Id string
- Most
Recent bool - Name string
- Name
Regex string - Title string
- Type string
- Zone string
- Access
Type string - Id string
- Most
Recent bool - Name string
- Name
Regex string - Title string
- Type string
- Zone string
- access
Type String - id String
- most
Recent Boolean - name String
- name
Regex String - title String
- type String
- zone String
- access
Type string - id string
- most
Recent boolean - name string
- name
Regex string - title string
- type string
- zone string
- access_
type str - id str
- most_
recent bool - name str
- name_
regex str - title str
- type str
- zone str
- access
Type String - id String
- most
Recent Boolean - name String
- name
Regex String - title String
- type String
- zone String
getStorage Result
The following output properties are available:
- Access
Type string - Encrypt bool
- Id string
- Labels Dictionary<string, string>
- Size int
- State string
- System
Labels Dictionary<string, string> - Tier string
- Title string
- Type string
- Zone string
- Most
Recent bool - Name string
- Name
Regex string
- Access
Type string - Encrypt bool
- Id string
- Labels map[string]string
- Size int
- State string
- System
Labels map[string]string - Tier string
- Title string
- Type string
- Zone string
- Most
Recent bool - Name string
- Name
Regex string
- access
Type String - encrypt Boolean
- id String
- labels Map<String,String>
- size Integer
- state String
- system
Labels Map<String,String> - tier String
- title String
- type String
- zone String
- most
Recent Boolean - name String
- name
Regex String
- access
Type string - encrypt boolean
- id string
- labels {[key: string]: string}
- size number
- state string
- system
Labels {[key: string]: string} - tier string
- title string
- type string
- zone string
- most
Recent boolean - name string
- name
Regex string
- access_
type str - encrypt bool
- id str
- labels Mapping[str, str]
- size int
- state str
- system_
labels Mapping[str, str] - tier str
- title str
- type str
- zone str
- most_
recent bool - name str
- name_
regex str
- access
Type String - encrypt Boolean
- id String
- labels Map<String>
- size Number
- state String
- system
Labels Map<String> - tier String
- title String
- type String
- zone String
- most
Recent Boolean - name String
- name
Regex String
Package Details
- Repository
- upcloud UpCloudLtd/pulumi-upcloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
upcloud
Terraform Provider.