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
new StorageDrsVmOverride(name: string, args: StorageDrsVmOverrideArgs, opts?: CustomResourceOptions);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);func NewStorageDrsVmOverride(ctx *Context, name string, args StorageDrsVmOverrideArgs, opts ...ResourceOption) (*StorageDrsVmOverride, error)public StorageDrsVmOverride(string name, StorageDrsVmOverrideArgs args, CustomResourceOptions? opts = null)- 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:
- Datastore
Cluster stringId The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.
- Virtual
Machine stringId The UUID of the virtual machine to create the override for. Forces a new resource if changed.
- Sdrs
Automation stringLevel Overrides any Storage DRS automation levels for this virtual machine. Can be one of
automatedormanual. When not specified, the datastore cluster’s settings are used according to the specific SDRS subsystem.- Sdrs
Enabled string Overrides the default Storage DRS setting for this virtual machine. When not specified, the datastore cluster setting is used.
- Sdrs
Intra stringVm Affinity 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. Whenfalse, 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 stringId The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.
- Virtual
Machine stringId The UUID of the virtual machine to create the override for. Forces a new resource if changed.
- Sdrs
Automation stringLevel Overrides any Storage DRS automation levels for this virtual machine. Can be one of
automatedormanual. When not specified, the datastore cluster’s settings are used according to the specific SDRS subsystem.- Sdrs
Enabled string Overrides the default Storage DRS setting for this virtual machine. When not specified, the datastore cluster setting is used.
- Sdrs
Intra stringVm Affinity 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. Whenfalse, 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 stringId The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.
- virtual
Machine stringId The UUID of the virtual machine to create the override for. Forces a new resource if changed.
- sdrs
Automation stringLevel Overrides any Storage DRS automation levels for this virtual machine. Can be one of
automatedormanual. When not specified, the datastore cluster’s settings are used according to the specific SDRS subsystem.- sdrs
Enabled string Overrides the default Storage DRS setting for this virtual machine. When not specified, the datastore cluster setting is used.
- sdrs
Intra stringVm Affinity 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. Whenfalse, 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_ strid The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.
- virtual_
machine_ strid The UUID of the virtual machine to create the override for. Forces a new resource if changed.
- sdrs_
automation_ strlevel Overrides any Storage DRS automation levels for this virtual machine. Can be one of
automatedormanual. 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_ strvm_ affinity 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. Whenfalse, 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:
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.
public static get(name: string, id: Input<ID>, state?: StorageDrsVmOverrideState, opts?: CustomResourceOptions): StorageDrsVmOverridestatic 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)public static StorageDrsVmOverride Get(string name, Input<string> id, StorageDrsVmOverrideState? state, CustomResourceOptions? opts = null)- 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:
- Datastore
Cluster stringId The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.
- Sdrs
Automation stringLevel Overrides any Storage DRS automation levels for this virtual machine. Can be one of
automatedormanual. When not specified, the datastore cluster’s settings are used according to the specific SDRS subsystem.- Sdrs
Enabled string Overrides the default Storage DRS setting for this virtual machine. When not specified, the datastore cluster setting is used.
- Sdrs
Intra stringVm Affinity 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. Whenfalse, 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 stringId The UUID of the virtual machine to create the override for. Forces a new resource if changed.
- Datastore
Cluster stringId The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.
- Sdrs
Automation stringLevel Overrides any Storage DRS automation levels for this virtual machine. Can be one of
automatedormanual. When not specified, the datastore cluster’s settings are used according to the specific SDRS subsystem.- Sdrs
Enabled string Overrides the default Storage DRS setting for this virtual machine. When not specified, the datastore cluster setting is used.
- Sdrs
Intra stringVm Affinity 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. Whenfalse, 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 stringId The UUID of the virtual machine to create the override for. Forces a new resource if changed.
- datastore
Cluster stringId The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.
- sdrs
Automation stringLevel Overrides any Storage DRS automation levels for this virtual machine. Can be one of
automatedormanual. When not specified, the datastore cluster’s settings are used according to the specific SDRS subsystem.- sdrs
Enabled string Overrides the default Storage DRS setting for this virtual machine. When not specified, the datastore cluster setting is used.
- sdrs
Intra stringVm Affinity 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. Whenfalse, 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 stringId The UUID of the virtual machine to create the override for. Forces a new resource if changed.
- datastore_
cluster_ strid The managed object reference ID of the datastore cluster to put the override in. Forces a new resource if changed.
- sdrs_
automation_ strlevel Overrides any Storage DRS automation levels for this virtual machine. Can be one of
automatedormanual. 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_ strvm_ affinity 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. Whenfalse, 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_ strid 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
vsphereTerraform Provider.