Virtual Machine Os Profile Args
data class VirtualMachineOsProfileArgs(val adminPassword: Output<String>? = null, val adminUsername: Output<String>, val computerName: Output<String>, val customData: Output<String>? = null) : ConvertibleToJava<VirtualMachineOsProfileArgs>
Properties
Link copied to clipboard
(Optional for Windows, Optional for Linux) The password associated with the local administrator account.
Link copied to clipboard
Specifies the name of the local administrator account.
Link copied to clipboard
Specifies the name of the Virtual Machine. Changing this forces a new resource to be created.
Link copied to clipboard
Specifies custom data to supply to the machine. On Linux-based systems, this can be used as a cloud-init script. On other systems, this will be copied as a file on disk. Internally, this provider will base64 encode this value before sending it to the API. The maximum length of the binary array is 65535 bytes. Changing this forces a new resource to be created.