
TECHBUNNY – Random Thoughts About Tech
1,311 FOLLOWERS
TECHBUNNY contains content regarding technology and solutions for IT Pros which Sysadmins should follow.
TECHBUNNY – Random Thoughts About Tech
1y ago
I’m putting these here so I don’t forget how to properly format these resources. My future me will be pleased about this at some point.
resource "azurerm_virtual_machine_extension" "dsc" {
count = var.compute_instance_count
name = "TestDSC"
virtual_machine_id = element(azurerm_virtual_machine.compute.*.id, count.index)
publisher = "Microsoft.Powershell"
type = "DSC"
type_handler_version = "2.80"
settings = <<SETTINGS
{
"WmfVersion": "latest",
"Privacy": {
"DataCollection ..read more
TECHBUNNY – Random Thoughts About Tech
5y ago
I’m putting these here so I don’t forget how to properly format these resources. My future me will be pleased about this at some point.
resource "azurerm_virtual_machine_extension" "dsc" {
count = var.compute_instance_count
name = "TestDSC"
virtual_machine_id = element(azurerm_virtual_machine.compute.*.id, count.index)
publisher = "Microsoft.Powershell"
type = "DSC"
type_handler_version = "2.80"
settings = <<SETTINGS
{
"WmfVersion": "latest",
"Privacy": {
"DataCollection ..read more