Skip to content

Commit

Permalink
add code (#24461)
Browse files Browse the repository at this point in the history
  • Loading branch information
ms-zhenhua authored Jan 16, 2024
1 parent b4a414b commit f3a692b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,10 @@ resource "azurerm_application_security_group" "test" {
name = "acctestasg-%d"
location = azurerm_resource_group.test.location
resource_group_name = azurerm_resource_group.test.name
lifecycle {
create_before_destroy = true
}
}
resource "azurerm_linux_virtual_machine_scale_set" "test" {
Expand Down Expand Up @@ -686,12 +690,20 @@ resource "azurerm_application_security_group" "test" {
name = "acctestasg-%d"
location = azurerm_resource_group.test.location
resource_group_name = azurerm_resource_group.test.name
lifecycle {
create_before_destroy = true
}
}
resource "azurerm_application_security_group" "other" {
name = "acctestasg2-%d"
location = azurerm_resource_group.test.location
resource_group_name = azurerm_resource_group.test.name
lifecycle {
create_before_destroy = true
}
}
resource "azurerm_linux_virtual_machine_scale_set" "test" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,10 @@ resource "azurerm_application_security_group" "test" {
name = "acctestasg-%d"
location = azurerm_resource_group.test.location
resource_group_name = azurerm_resource_group.test.name
lifecycle {
create_before_destroy = true
}
}
resource "azurerm_windows_virtual_machine_scale_set" "test" {
Expand Down Expand Up @@ -685,12 +689,20 @@ resource "azurerm_application_security_group" "test" {
name = "acctestasg-%d"
location = azurerm_resource_group.test.location
resource_group_name = azurerm_resource_group.test.name
lifecycle {
create_before_destroy = true
}
}
resource "azurerm_application_security_group" "other" {
name = "acctestasg2-%d"
location = azurerm_resource_group.test.location
resource_group_name = azurerm_resource_group.test.name
lifecycle {
create_before_destroy = true
}
}
resource "azurerm_windows_virtual_machine_scale_set" "test" {
Expand Down

0 comments on commit f3a692b

Please sign in to comment.