WilliamLam.com

  • About
    • About
    • Privacy
  • VMware Cloud
  • Tanzu
    • Application Modernization
    • Tanzu services
    • Tanzu Community Edition
    • Tanzu Kubernetes Grid
    • vSphere with Tanzu
  • Home Lab
  • Nested Virtualization
  • Apple
You are here: Home / Automation / PowerCLI Module for managing vCenter Single Sign-On (SSO)

PowerCLI Module for managing vCenter Single Sign-On (SSO)

10.05.2020 by William Lam // 8 Comments

A few years back I had submitted a PowerCLI Feature Request (PCLI-44) via the public PowerCLI Ideas platform requesting for a PowerCLI module that would support vCenter Single Sign-On (SSO) Administrative functionality such as managing SSO Users, Groups, Password, Lockout Policy and Identity Sources.


This was one of the most popular Idea voted by the PowerCLI community, which also stressed the need for such functionality which I came across on a regular basis on some of the Automation I was writing. In the past, I have written numerous blog articles in working around this limitation as the vCenter SSO Admin APIs were not and leveraging Guest Operations API, one could still automate various SSO operations using the various SSO CLIs that is included within the vCenter Server Appliance (VCSA).

Today, I received a notification from the PowerCLI Ideas platform that this feature as "Shipped" and it looks like the PowerCLI team has just released an Open Source Module called VMware.vSphere.SsoAdmin that includes the following 12 cmdlets:

  • Add-ActiveDirectoryIdentitySource
  • Add-GroupToSsoGroup
  • Add-LDAPIdentitySource
  • Add-UserToSsoGroup
  • Connect-SsoAdminServer
  • Disconnect-SsoAdminServer
  • Get-IdentitySource
  • Get-SsoAuthenticationPolicy
  • Get-SsoGroup
  • Get-SsoLockoutPolicy
  • Get-SsoPasswordPolicy
  • Get-SsoPersonUser
  • Get-SsoTokenLifetime
  • New-SsoGroup
  • New-SsoPersonUser
  • Remove-GroupFromSsoGroup
  • Remove-IdentitySource
  • Remove-SsoGroup
  • Remove-SsoPersonUser
  • Remove-UserFromSsoGroup
  • Set-LDAPIdentitySource
  • Set-SsoAuthenticationPolicy
  • Set-SsoGroup
  • Set-SsoLockoutPolicy
  • Set-SsoPasswordPolicy
  • Set-SsoPersonUser
  • Set-SsoSelfPersonUserPassword
  • Set-SsoTokenLifetime

To get started with the new PowerCLI SSO Module, take a look at the instructions below.

Pre-Req:

  • PowerShell 5.1 (or newer) + PowerCLI 12.0 Installed

Step 1 - Clone using git command-line or download the PowerCLI Example Repo to your local system

Step 2 - Change into the modules/VMware.vSphere.SsoAdmin directory and then import SSO module using:

Import-Module ./VMware.vSphere.SsoAdmin.psd1

Step 3 - Use the Connect-SsoAdminServer to connect to your vCenter Server. If you have a self-signed certificate, you will need to pass in the -SkipCertificateCheck parameter

Connect-SsoAdminServer -Server vcsa.primp-industries.com -User *protected email* -Password VMware1! -SkipCertificateCheck


Once connected, you can start using any of the SSO cmdlets, here is an example retrieving the SSO Password and Lockout Policies:

Get-SsoPasswordPolicy
Get-SsoLockoutPolicy


Here is an example of creating a new SSO User and then r

New-SsoPersonUser -User lamw -Password 'MyStrongPa$$w0rd' -EmailAddress '*protected email*' -FirstName 'William' -LastName 'Lam'
Get-SsoPersonUser -Name lamw -Domain vsphere.local
Remove-SsoPersonUser -User (Get-SsoPersonUser -Name lamw -Domain vsphere.local)


To disconnect from SSO endpoint, you will need to run the following command:

Disconnect-SsoAdminServer -Server $Global:DefaultSsoAdminServers[0]

I was hoping Disconnect-SsoAdminServer worked like other PowerCLI disconnect functions which accepts * (asterisk) but looks like it expects a specific endpoint. I have already filed a feature enhancement as this is how I normally disconnect 🙂

For detailed documentation on each cmdlet, simply use the Get-Help function and specify the name of the cmdlet to get more information. If you have been waiting for this functionality in PowerCLI, be sure to give this a try and hopefully with positive feedback, we may see this module as part of the official PowerCLI release in the future!

More from my site

  • Automating Cross vCenter vMotion (xVC-vMotion) between the same & different SSO Domain
  • PowerCLI 13.0 on Photon OS
  • Heads Up - Unable to open VIB archive in streaming mode using Export-EsxImageProfile with PowerCLI 13.0
  • How to install PowerCLI 13.0 and use new Image Builder & Auto Deploy cmdlets on Apple Silicon?
  • Creating custom ESXi images using vSphere Lifecycle Manager (vLCM) UI and PowerCLI cmdlets for vSphere 8

Categories // Automation, PowerCLI, vSphere Tags // PowerCLI, sso

Comments

  1. Christian says

    10/08/2020 at 2:22 am

    Is there any way to update the Password for the Service Account in the LDAPS Identity Source via commandline / PowerCLI?

    Reply
  2. Alexandre Costa says

    12/11/2020 at 5:42 am

    Working well for me! Thanks a lot

    Reply
  3. Peter Anderson says

    01/04/2021 at 7:08 am

    Is there a way to add an SSO Identity Source which uses LDAPS and therefore requires a certificate? I don't see any way to add a certificate.

    Thanks for all of the work on this.

    Reply
    • William Lam says

      01/04/2021 at 7:52 am

      If you don’t see it as an option, probably not. You can always file feature request on GitHub

      Reply
    • Peter Anderson says

      01/04/2021 at 8:29 am

      Actually, looking at it closer, it seems like this is adding it to AD instead of what I want which is adding AD as an LDAP source. Is that correct?

      Reply
      • Peter Anderson says

        01/04/2021 at 8:30 am

        I'll put in a feature request. Thanks for the info.

        Reply
  4. Kevin Scurlock says

    01/06/2021 at 5:18 am

    This is something I've been wanting for a very long time... so thank you!

    Can you tell me if there's a way to manage group in a similar fashion? For example, I'd like to add an SSO user to the Administrators group. Right now I'm having to do it via an SSH session into vCenter as so:

    /usr/lib/vmware-vmafd/bin/dir-cli group modify --name Administrators --add *protected email*

    Reply
  5. marlon says

    02/19/2021 at 3:20 pm

    is there a way to get all the super admin,operation and administrator using powercli and check the password last set?

    Reply

Thanks for the comment! Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Search

Author

William Lam is a Senior Staff Solution Architect working in the VMware Cloud team within the Cloud Infrastructure Business Group (CIBG) at VMware. He focuses on Cloud Native technologies, Automation, Integration and Operation for the VMware Cloud based Software Defined Datacenters (SDDC)

Connect

  • Email
  • GitHub
  • LinkedIn
  • RSS
  • Twitter
  • Vimeo

Recent

  • Self-Contained & Automated VMware Cloud Foundation (VCF) deployment using new VLC Holodeck Toolkit 03/29/2023
  • ESXi configstorecli enhancement in vSphere 8.0 Update 1 03/28/2023
  • ESXi on Intel NUC 13 Pro (Arena Canyon) 03/27/2023
  • Quick Tip - Enabling ESXi Coredumps to be stored on USB 03/26/2023
  • How to disable the Efficiency Cores (E-cores) on an Intel NUC? 03/24/2023

Advertisment

Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
To find out more, including how to control cookies, see here: Cookie Policy

Copyright WilliamLam.com © 2023

 

Loading Comments...