civo.Volume
Provides a Civo volume which can be attached to an instance in order to provide expanded storage.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Civo = Pulumi.Civo;
return await Deployment.RunAsync(() =>
{
var defaultNetwork = Civo.GetNetwork.Invoke(new()
{
Label = "Default",
});
// Create volume
var db = new Civo.Volume("db", new()
{
SizeGb = 5,
NetworkId = defaultNetwork.Apply(getNetworkResult => getNetworkResult.Id),
}, new CustomResourceOptions
{
DependsOn = new[]
{
defaultNetwork,
},
});
});
package main
import (
"github.com/pulumi/pulumi-civo/sdk/v2/go/civo"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
defaultNetwork, err := civo.LookupNetwork(ctx, &civo.LookupNetworkArgs{
Label: pulumi.StringRef("Default"),
}, nil)
if err != nil {
return err
}
_, err = civo.NewVolume(ctx, "db", &civo.VolumeArgs{
SizeGb: pulumi.Int(5),
NetworkId: *pulumi.String(defaultNetwork.Id),
}, pulumi.DependsOn([]pulumi.Resource{
defaultNetwork,
}))
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.civo.CivoFunctions;
import com.pulumi.civo.inputs.GetNetworkArgs;
import com.pulumi.civo.Volume;
import com.pulumi.civo.VolumeArgs;
import com.pulumi.resources.CustomResourceOptions;
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 defaultNetwork = CivoFunctions.getNetwork(GetNetworkArgs.builder()
.label("Default")
.build());
var db = new Volume("db", VolumeArgs.builder()
.sizeGb(5)
.networkId(defaultNetwork.applyValue(getNetworkResult -> getNetworkResult.id()))
.build(), CustomResourceOptions.builder()
.dependsOn(defaultNetwork.applyValue(getNetworkResult -> getNetworkResult))
.build());
}
}
import pulumi
import pulumi_civo as civo
default_network = civo.get_network(label="Default")
# Create volume
db = civo.Volume("db",
size_gb=5,
network_id=default_network.id,
opts=pulumi.ResourceOptions(depends_on=[default_network]))
import * as pulumi from "@pulumi/pulumi";
import * as civo from "@pulumi/civo";
const defaultNetwork = civo.getNetwork({
label: "Default",
});
// Create volume
const db = new civo.Volume("db", {
sizeGb: 5,
networkId: defaultNetwork.then(defaultNetwork => defaultNetwork.id),
}, {
dependsOn: [defaultNetwork],
});
resources:
# Create volume
db:
type: civo:Volume
properties:
sizeGb: 5
networkId: ${defaultNetwork.id}
options:
dependson:
- ${defaultNetwork}
variables:
defaultNetwork:
fn::invoke:
Function: civo:getNetwork
Arguments:
label: Default
Create Volume Resource
new Volume(name: string, args: VolumeArgs, opts?: CustomResourceOptions);
@overload
def Volume(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
network_id: Optional[str] = None,
region: Optional[str] = None,
size_gb: Optional[int] = None)
@overload
def Volume(resource_name: str,
args: VolumeArgs,
opts: Optional[ResourceOptions] = None)
func NewVolume(ctx *Context, name string, args VolumeArgs, opts ...ResourceOption) (*Volume, error)
public Volume(string name, VolumeArgs args, CustomResourceOptions? opts = null)
public Volume(String name, VolumeArgs args)
public Volume(String name, VolumeArgs args, CustomResourceOptions options)
type: civo:Volume
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeArgs
- 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 VolumeArgs
- 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 VolumeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Volume Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Volume resource accepts the following input properties:
- Network
Id string The network that the volume belongs to
- Size
Gb int A minimum of 1 and a maximum of your available disk space from your quota specifies the size of the volume in gigabytes
- Name string
A name that you wish to use to refer to this volume
- Region string
The region for the volume, if not declare we use the region in declared in the provider.
- Network
Id string The network that the volume belongs to
- Size
Gb int A minimum of 1 and a maximum of your available disk space from your quota specifies the size of the volume in gigabytes
- Name string
A name that you wish to use to refer to this volume
- Region string
The region for the volume, if not declare we use the region in declared in the provider.
- network
Id String The network that the volume belongs to
- size
Gb Integer A minimum of 1 and a maximum of your available disk space from your quota specifies the size of the volume in gigabytes
- name String
A name that you wish to use to refer to this volume
- region String
The region for the volume, if not declare we use the region in declared in the provider.
- network
Id string The network that the volume belongs to
- size
Gb number A minimum of 1 and a maximum of your available disk space from your quota specifies the size of the volume in gigabytes
- name string
A name that you wish to use to refer to this volume
- region string
The region for the volume, if not declare we use the region in declared in the provider.
- network_
id str The network that the volume belongs to
- size_
gb int A minimum of 1 and a maximum of your available disk space from your quota specifies the size of the volume in gigabytes
- name str
A name that you wish to use to refer to this volume
- region str
The region for the volume, if not declare we use the region in declared in the provider.
- network
Id String The network that the volume belongs to
- size
Gb Number A minimum of 1 and a maximum of your available disk space from your quota specifies the size of the volume in gigabytes
- name String
A name that you wish to use to refer to this volume
- region String
The region for the volume, if not declare we use the region in declared in the provider.
Outputs
All input properties are implicitly available as output properties. Additionally, the Volume resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Mount
Point string The mount point of the volume (from instance's perspective)
- Id string
The provider-assigned unique ID for this managed resource.
- Mount
Point string The mount point of the volume (from instance's perspective)
- id String
The provider-assigned unique ID for this managed resource.
- mount
Point String The mount point of the volume (from instance's perspective)
- id string
The provider-assigned unique ID for this managed resource.
- mount
Point string The mount point of the volume (from instance's perspective)
- id str
The provider-assigned unique ID for this managed resource.
- mount_
point str The mount point of the volume (from instance's perspective)
- id String
The provider-assigned unique ID for this managed resource.
- mount
Point String The mount point of the volume (from instance's perspective)
Look up Existing Volume Resource
Get an existing Volume 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?: VolumeState, opts?: CustomResourceOptions): Volume
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
mount_point: Optional[str] = None,
name: Optional[str] = None,
network_id: Optional[str] = None,
region: Optional[str] = None,
size_gb: Optional[int] = None) -> Volume
func GetVolume(ctx *Context, name string, id IDInput, state *VolumeState, opts ...ResourceOption) (*Volume, error)
public static Volume Get(string name, Input<string> id, VolumeState? state, CustomResourceOptions? opts = null)
public static Volume get(String name, Output<String> id, VolumeState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Mount
Point string The mount point of the volume (from instance's perspective)
- Name string
A name that you wish to use to refer to this volume
- Network
Id string The network that the volume belongs to
- Region string
The region for the volume, if not declare we use the region in declared in the provider.
- Size
Gb int A minimum of 1 and a maximum of your available disk space from your quota specifies the size of the volume in gigabytes
- Mount
Point string The mount point of the volume (from instance's perspective)
- Name string
A name that you wish to use to refer to this volume
- Network
Id string The network that the volume belongs to
- Region string
The region for the volume, if not declare we use the region in declared in the provider.
- Size
Gb int A minimum of 1 and a maximum of your available disk space from your quota specifies the size of the volume in gigabytes
- mount
Point String The mount point of the volume (from instance's perspective)
- name String
A name that you wish to use to refer to this volume
- network
Id String The network that the volume belongs to
- region String
The region for the volume, if not declare we use the region in declared in the provider.
- size
Gb Integer A minimum of 1 and a maximum of your available disk space from your quota specifies the size of the volume in gigabytes
- mount
Point string The mount point of the volume (from instance's perspective)
- name string
A name that you wish to use to refer to this volume
- network
Id string The network that the volume belongs to
- region string
The region for the volume, if not declare we use the region in declared in the provider.
- size
Gb number A minimum of 1 and a maximum of your available disk space from your quota specifies the size of the volume in gigabytes
- mount_
point str The mount point of the volume (from instance's perspective)
- name str
A name that you wish to use to refer to this volume
- network_
id str The network that the volume belongs to
- region str
The region for the volume, if not declare we use the region in declared in the provider.
- size_
gb int A minimum of 1 and a maximum of your available disk space from your quota specifies the size of the volume in gigabytes
- mount
Point String The mount point of the volume (from instance's perspective)
- name String
A name that you wish to use to refer to this volume
- network
Id String The network that the volume belongs to
- region String
The region for the volume, if not declare we use the region in declared in the provider.
- size
Gb Number A minimum of 1 and a maximum of your available disk space from your quota specifies the size of the volume in gigabytes
Import
using ID
$ pulumi import civo:index/volume:Volume db 506f78a4-e098-11e5-ad9f-000f53306ae1
Package Details
- Repository
- Civo pulumi/pulumi-civo
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
civo
Terraform Provider.