Skip to content

Instantly share code, notes, and snippets.

@KyMidd
Created September 16, 2024 01:06
Show Gist options
  • Select an option

  • Save KyMidd/2f0c30e12e56492640a99de7e8dae08f to your computer and use it in GitHub Desktop.

Select an option

Save KyMidd/2f0c30e12e56492640a99de7e8dae08f to your computer and use it in GitHub Desktop.
resource "azurerm_maintenance_assignment_dynamic_scope" "accountA" {
name = "dynamic-scope-accounta"
maintenance_configuration_id = azurerm_maintenance_configuration.main.id
filter {
os_types = ["Windows"]
resource_types = ["Microsoft.Compute/virtualMachines"]
tag_filter = "All"
tags {
tag = "HostType"
values = ["Servers"]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment