vmware / dscr-for-vmware

The Repository contains Microsoft PowerShell Desired State Configuration (DSC) Resources for managing VC and ESXi settings.
Other
140 stars 41 forks source link

VMHostVdsNic DSC Resource #273

Closed SimeonGerginov closed 4 years ago

SimeonGerginov commented 4 years ago

Added

Changed

SimeonGerginov commented 4 years ago

Example usage of VMHostVdsNic DSC Resource:

VMHostVdsNic VMHostVdsNic {
    Server = $Server
    Credential = $Credential
    VMHostName = $VMHostName
    Name = 'vmk0'
    VdsName = 'DscVDSwitch'
    PortGroupName = 'DscVDPortGroup'
    Ensure = 'Present'
    ManagementTrafficEnabled = $true
    FaultToleranceLoggingEnabled = $true
    VMotionEnabled = $true
    VsanTrafficEnabled = $true
}