Skip to content

Commit

Permalink
skip: update CI 265
Browse files Browse the repository at this point in the history
  • Loading branch information
vit-corp committed Sep 23, 2024
1 parent b372bce commit 4695a7f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auto_policy_testing/green/automation/automation_account.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
resource "azurerm_automation_account" "this" {
name = module.naming.resource_prefix.automation
location = "eastasia"
name = "${module.naming.resource_prefix.automation}${random_integer.this.result}"
location = "eastus"
resource_group_name = data.terraform_remote_state.common.outputs.resource_group
sku_name = "Basic"
tags = module.naming.default_tags
Expand Down
4 changes: 4 additions & 0 deletions auto_policy_testing/green/automation/random.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
resource "random_integer" "this" {
min = 1
max = 100
}

0 comments on commit 4695a7f

Please sign in to comment.