StorageDrsVmOverride

The vsphere..StorageDrsVmOverride resource can be used to add a Storage DRS override to a datastore cluster for a specific virtual machine. With this resource, one can enable or disable Storage DRS, and control the automation level and disk affinity for a single virtual machine without affecting the rest of the datastore cluster.

For more information on vSphere datastore clusters and Storage DRS, see this page.

Example Usage

using Pulumi;
using VSphere = Pulumi.VSphere;

class MyStack : Stack
{
    public MyStack()
    {
        var dc = Output.Create(VSphere.GetDatacenter.InvokeAsync(new VSphere.GetDatacenterArgs
        {
            Name = "dc1",
        }));
        var datastoreCluster = dc.Apply(dc => Output.Create(VSphere.GetDatastoreCluster.InvokeAsync(new VSphere.GetDatastoreClusterArgs
        {
            DatacenterId = dc.Id,
            Name = "datastore-cluster1",
        })));
        var memberDatastore = dc.Apply(dc => Output.Create(VSphere.GetDatastore.InvokeAsync(new VSphere.GetDatastoreArgs
        {
            DatacenterId = dc.Id,
            Name = "datastore-cluster1-member1",
        })));
        var pool = dc.Apply(dc => Output.Create(VSphere.GetResourcePool.InvokeAsync(new VSphere.GetResourcePoolArgs
        {
            DatacenterId = dc.Id,
            Name = "cluster1/Resources",
        })));
        var network = dc.Apply(dc => Output.Create(VSphere.GetNetwork.InvokeAsync(new VSphere.GetNetworkArgs
        {
            DatacenterId = dc.Id,
            Name = "public",
        })));
        var vm = new VSphere.VirtualMachine("vm", new VSphere.VirtualMachineArgs
        {
            DatastoreId = memberDatastore.Apply(memberDatastore => memberDatastore.Id),
            Disks = 
            {
                new VSphere.Inputs.VirtualMachineDiskArgs
                {
                    Label = "disk0",
                    Size = 20,
                },
            },
            GuestId = "other3xLinux64Guest",
            Memory = 1024,
            NetworkInterfaces = 
            {
                new VSphere.Inputs.VirtualMachineNetworkInterfaceArgs
                {
                    NetworkId = network.Apply(network => network.Id),
                },
            },
            NumCpus = 2,
            ResourcePoolId = pool.Apply(pool => pool.Id),
        });
        var drsVmOverride = new VSphere.StorageDrsVmOverride("drsVmOverride", new VSphere.StorageDrsVmOverrideArgs
        {
            DatastoreClusterId = datastoreCluster.Apply(datastoreCluster => datastoreCluster.Id),
            SdrsEnabled = "false",
            VirtualMachineId = vm.Id,
        });
    }

}

Coming soon!

import pulumi
import pulumi_vsphere as vsphere

dc = vsphere.get_datacenter(name="dc1")
datastore_cluster = vsphere.get_datastore_cluster(datacenter_id=dc.id,
    name="datastore-cluster1")
member_datastore = vsphere.get_datastore(datacenter_id=dc.id,
    name="datastore-cluster1-member1")
pool = vsphere.get_resource_pool(datacenter_id=dc.id,
    name="cluster1/Resources")
network = vsphere.get_network(datacenter_id=dc.id,
    name="public")
vm = vsphere.VirtualMachine("vm",
    datastore_id=member_datastore.id,
    disks=[{
        "label": "disk0",
        "size": 20,
    }],
    guest_id="other3xLinux64Guest",
    memory=1024,
    network_interfaces=[{
        "networkId": network.id,
    }],
    num_cpus=2,
    resource_pool_id=pool.id)
drs_vm_override = vsphere.StorageDrsVmOverride("drsVmOverride",
    datastore_cluster_id=datastore_cluster.id,
    sdrs_enabled=False,
    virtual_machine_id=vm.id)
import * as pulumi from "@pulumi/pulumi";
import * as vsphere from "@pulumi/vsphere";

const dc = pulumi.output(vsphere.getDatacenter({
    name: "dc1",
}, { async: true }));
const datastoreCluster = dc.apply(dc => vsphere.getDatastoreCluster({
    datacenterId: dc.id,
    name: "datastore-cluster1",
}, { async: true }));
const memberDatastore = dc.apply(dc => vsphere.getDatastore({
    datacenterId: dc.id,
    name: "datastore-cluster1-member1",
}, { async: true }));
const pool = dc.apply(dc => vsphere.getResourcePool({
    datacenterId: dc.id,
    name: "cluster1/Resources",
}, { async: true }));
const network = dc.apply(dc => vsphere.getNetwork({
    datacenterId: dc.id,
    name: "public",
}, { async: true }));
const vm = new vsphere.VirtualMachine("vm", {
    datastoreId: memberDatastore.id,
    disks: [{
        label: "disk0",
        size: 20,
    }],
    guestId: "other3xLinux64Guest",
    memory: 1024,
    networkInterfaces: [{
        networkId: network.id,
    }],
    numCpus: 2,
    resourcePoolId: pool.id,
});
const drsVmOverride = new vsphere.StorageDrsVmOverride("drs_vm_override", {
    datastoreClusterId: datastoreCluster.id,
    sdrsEnabled: "false",
    virtualMachineId: vm.id,
});

Create a StorageDrsVmOverride Resource

def StorageDrsVmOverride(resource_name, opts=None, datastore_cluster_id=None, sdrs_automation_level=None, sdrs_enabled=None, sdrs_intra_vm_affinity=None, virtual_machine_id=None, __props__=None);
name string
The unique name of the resource.
args StorageDrsVmOverrideArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args StorageDrsVmOverrideArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args StorageDrsVmOverrideArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

StorageDrsVmOverride Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The StorageDrsVmOverride resource accepts the following input properties:

DatastoreClusterId string

The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.

VirtualMachineId string

The UUID of the virtual machine to create the override for. Forces a new resource if changed.

SdrsAutomationLevel string

Overrides any Storage DRS automation levels for this virtual machine. Can be one of automated or manual. When not specified, the datastore cluster’s settings are used according to the specific SDRS subsystem.

SdrsEnabled string

Overrides the default Storage DRS setting for this virtual machine. When not specified, the datastore cluster setting is used.

SdrsIntraVmAffinity string

Overrides the intra-VM affinity setting for this virtual machine. When true, all disks for this virtual machine will be kept on the same datastore. When false, Storage DRS may locate individual disks on different datastores if it helps satisfy cluster requirements. When not specified, the datastore cluster’s settings are used.

DatastoreClusterId string

The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.

VirtualMachineId string

The UUID of the virtual machine to create the override for. Forces a new resource if changed.

SdrsAutomationLevel string

Overrides any Storage DRS automation levels for this virtual machine. Can be one of automated or manual. When not specified, the datastore cluster’s settings are used according to the specific SDRS subsystem.

SdrsEnabled string

Overrides the default Storage DRS setting for this virtual machine. When not specified, the datastore cluster setting is used.

SdrsIntraVmAffinity string

Overrides the intra-VM affinity setting for this virtual machine. When true, all disks for this virtual machine will be kept on the same datastore. When false, Storage DRS may locate individual disks on different datastores if it helps satisfy cluster requirements. When not specified, the datastore cluster’s settings are used.

datastoreClusterId string

The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.

virtualMachineId string

The UUID of the virtual machine to create the override for. Forces a new resource if changed.

sdrsAutomationLevel string

Overrides any Storage DRS automation levels for this virtual machine. Can be one of automated or manual. When not specified, the datastore cluster’s settings are used according to the specific SDRS subsystem.

sdrsEnabled string

Overrides the default Storage DRS setting for this virtual machine. When not specified, the datastore cluster setting is used.

sdrsIntraVmAffinity string

Overrides the intra-VM affinity setting for this virtual machine. When true, all disks for this virtual machine will be kept on the same datastore. When false, Storage DRS may locate individual disks on different datastores if it helps satisfy cluster requirements. When not specified, the datastore cluster’s settings are used.

datastore_cluster_id str

The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.

virtual_machine_id str

The UUID of the virtual machine to create the override for. Forces a new resource if changed.

sdrs_automation_level str

Overrides any Storage DRS automation levels for this virtual machine. Can be one of automated or manual. When not specified, the datastore cluster’s settings are used according to the specific SDRS subsystem.

sdrs_enabled str

Overrides the default Storage DRS setting for this virtual machine. When not specified, the datastore cluster setting is used.

sdrs_intra_vm_affinity str

Overrides the intra-VM affinity setting for this virtual machine. When true, all disks for this virtual machine will be kept on the same datastore. When false, Storage DRS may locate individual disks on different datastores if it helps satisfy cluster requirements. When not specified, the datastore cluster’s settings are used.

Outputs

All input properties are implicitly available as output properties. Additionally, the StorageDrsVmOverride resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.

Look up an Existing StorageDrsVmOverride Resource

Get an existing StorageDrsVmOverride resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

static get(resource_name, id, opts=None, datastore_cluster_id=None, sdrs_automation_level=None, sdrs_enabled=None, sdrs_intra_vm_affinity=None, virtual_machine_id=None, __props__=None);
func GetStorageDrsVmOverride(ctx *Context, name string, id IDInput, state *StorageDrsVmOverrideState, opts ...ResourceOption) (*StorageDrsVmOverride, error)
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.

The following state arguments are supported:

DatastoreClusterId string

The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.

SdrsAutomationLevel string

Overrides any Storage DRS automation levels for this virtual machine. Can be one of automated or manual. When not specified, the datastore cluster’s settings are used according to the specific SDRS subsystem.

SdrsEnabled string

Overrides the default Storage DRS setting for this virtual machine. When not specified, the datastore cluster setting is used.

SdrsIntraVmAffinity string

Overrides the intra-VM affinity setting for this virtual machine. When true, all disks for this virtual machine will be kept on the same datastore. When false, Storage DRS may locate individual disks on different datastores if it helps satisfy cluster requirements. When not specified, the datastore cluster’s settings are used.

VirtualMachineId string

The UUID of the virtual machine to create the override for. Forces a new resource if changed.

DatastoreClusterId string

The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.

SdrsAutomationLevel string

Overrides any Storage DRS automation levels for this virtual machine. Can be one of automated or manual. When not specified, the datastore cluster’s settings are used according to the specific SDRS subsystem.

SdrsEnabled string

Overrides the default Storage DRS setting for this virtual machine. When not specified, the datastore cluster setting is used.

SdrsIntraVmAffinity string

Overrides the intra-VM affinity setting for this virtual machine. When true, all disks for this virtual machine will be kept on the same datastore. When false, Storage DRS may locate individual disks on different datastores if it helps satisfy cluster requirements. When not specified, the datastore cluster’s settings are used.

VirtualMachineId string

The UUID of the virtual machine to create the override for. Forces a new resource if changed.

datastoreClusterId string

The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.

sdrsAutomationLevel string

Overrides any Storage DRS automation levels for this virtual machine. Can be one of automated or manual. When not specified, the datastore cluster’s settings are used according to the specific SDRS subsystem.

sdrsEnabled string

Overrides the default Storage DRS setting for this virtual machine. When not specified, the datastore cluster setting is used.

sdrsIntraVmAffinity string

Overrides the intra-VM affinity setting for this virtual machine. When true, all disks for this virtual machine will be kept on the same datastore. When false, Storage DRS may locate individual disks on different datastores if it helps satisfy cluster requirements. When not specified, the datastore cluster’s settings are used.

virtualMachineId string

The UUID of the virtual machine to create the override for. Forces a new resource if changed.

datastore_cluster_id str

The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.

sdrs_automation_level str

Overrides any Storage DRS automation levels for this virtual machine. Can be one of automated or manual. When not specified, the datastore cluster’s settings are used according to the specific SDRS subsystem.

sdrs_enabled str

Overrides the default Storage DRS setting for this virtual machine. When not specified, the datastore cluster setting is used.

sdrs_intra_vm_affinity str

Overrides the intra-VM affinity setting for this virtual machine. When true, all disks for this virtual machine will be kept on the same datastore. When false, Storage DRS may locate individual disks on different datastores if it helps satisfy cluster requirements. When not specified, the datastore cluster’s settings are used.

virtual_machine_id str

The UUID of the virtual machine to create the override for. Forces a new resource if changed.

Package Details

Repository
https://github.com/pulumi/pulumi-vsphere
License
Apache-2.0
Notes
This Pulumi package is based on the vsphere Terraform Provider.