Stu Mace

Results 49 comments of Stu Mace

@PlagueHO I happened to have tried this in Ansible just now (using DSC resources to do the AD join because I'm lazy 😄). Prior to AD promoition, I had two...

what about breaking this out into distinct modules, perhaps one for win & one for linux. I've thought already that the data disks probably make more sense outside of the...

Hello @NikCharlebois, I see this is the same approach used in [Microsoft365Dsc ](https://github.com/microsoft/Microsoft365DSC/) too. In the early days of ReverseDSC this was done as an external "orchestrator" module, such as...

Hi @BernieWhite - looks good, why not do a pull request (PR)? The only improvment I would suggest would be to use Test-Path to check to see if the SDK...

Another approach i've used in the past is to use a Script resource to install SQL based on a configuration file - see the example here: https://colinsalmcorner.com/install-and-configure-sql-server-using-powershell-dsc/ You do lose...

Double quotes like that won't work because $? will be evaluated to whatever the variable contains, sticking with Invoke-Expression, you'd need something like this: ``` $param = '--localonly' $exp =...

i seem to have messed up something here - sorry I should have let the e2e tests finish in my repo first. Please hold on this for now - need...

> @kewalaka can you provide an update here? > > It might be best to use separate validation rules to test each scenario, rather than a complex regex. @matt-FFFFFF Agreed...

a related use case that is important for me is the ability to set private dns records on a zone in a "hub" sub - this works at the moment,...

@matt-FFFFFF I'm just going through adding this into the template and spotted some issues the private_endpoint_id needs updating: ```terraform resource "azurerm_private_endpoint_application_security_group_association" "this" for_each = local.private_endpoint_application_security_group_associations application_security_group_id = each.value.asg_resource_id private_endpoint_id =...