-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Managed Service Accounts/Group Managed Service Accounts #100
Comments
Adding info for documentation purposes. PowerShell does not support $null passwords when creating pscredential objects. Adding support for MSA's would likely require changing the DSC resources to support individual parameters for Username and Password instead of passing in a pscredential or including a new parameter that accepts a MSA and then logic determines which to use. The DSC_xServiceResource has implemented this sort of behavior successfully. |
Any updates on an ETA for that? |
Push. |
Just an update on this enhancement request. With the release of 10.8, the installers now support the use of gMSA's. As such, the below example can be used when building custom configurations with the DSC resources directly (compared to leveraging the functions/cmdlets bundled) to install the software and run it as a gMSA. It's not complete support but half the battle. If building custom DSC configurations yourself, the Install ArcGIS Server:
This update is directed toward users of the module and not toward the dev team directly. |
Hope the team will prioritize this request. At last since UC-2019 using a gMSA as the service account is promoted as a best practice. |
Hello @PleaseStopAsking and @HakonD, We have added support for gMSA in the latest release, v3.2.0: https://github.com/Esri/arcgis-powershell-dsc/releases/tag/v3.2.0 To use, set ConfigData.Credentials.ServiceAccount.IsMSAAccount = true. arcgis-powershell-dsc/SampleConfigs/v3/v3.2.0/Base Deployment/BaseDeployment-SingleMachine.json Lines 23 to 28 in 78e488f
Thanks, |
Hi,
We currently utilize MSA/gMSA's within our deployments but are required to manually switch over to them after utilizing DSC to deploy with local accounts. Would it be possible to implement these in the future?
Our current workflow requires...
As the DSC resources already handle setting the permissions aspect, I assume that adding support for the MSA's use of
for the username field would need to done.
Thanks,
The text was updated successfully, but these errors were encountered: