You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This Terraform module will deploy VCD Independent Disks into an existing VMware Cloud Director (VCD) Environment. This module can be used to provision new Independent Disks into Rackspace Technology SDDC Flex VCD Data Center Regions.
Information about the created independent disks. The output is a map where the keys are the disk IDs and the values are maps with the following fields: name, size_in_mb, bus_type, bus_sub_type, storage_profile, sharing_type, description, metadata, and is_attached.
Example Usage
This is an example of a main.tf file that uses the "github.com/global-vmware/vcd_independent_disk" Module source to create independent disks in a VMware Cloud Director environment:
module"vcd_independent_disk" {
source="github.com/global-vmware/vcd_independent_disk.git?ref=v1.1.1"vdc_org_name="<US1-VDC-ORG-NAME>"vdc_name="<US1-VDC-NAME>"disk_params=[
{
name ="Prod App Web 01-WebDataDisk01"
size_in_mb ="102400"
bus_type ="SCSI"
bus_sub_type ="lsilogicsas"
storage_profile ="Standard"
sharing_type ="None"
metadata = [
{
key ="Built By"
value ="Terraform"
type ="MetadataStringValue"
user_access ="READWRITE"
is_system =false
},
{
key ="Cost Center"
value ="IT Department - 1001"
type ="MetadataStringValue"
user_access ="READWRITE"
is_system =false
}
]
},
// More disks can be added here
]
}