Skip to content

Commit

Permalink
skip: update CI 269
Browse files Browse the repository at this point in the history
  • Loading branch information
vit-corp committed Sep 25, 2024
1 parent 66ce799 commit 09d3cfe
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions auto_policy_testing/green/container/container_registry.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,7 @@ resource "azurerm_container_registry" "this" {
}

tags = module.naming.default_tags

depends_on = [ azurerm_key_vault_access_policy.user_identity ]
}

2 changes: 2 additions & 0 deletions auto_policy_testing/green/container/key_vault.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@ resource "azurerm_key_vault_access_policy" "user_identity" {

key_permissions = ["Get", "UnwrapKey", "WrapKey"]

depends_on = [ azurerm_user_assigned_identity.this ]

}

6 changes: 5 additions & 1 deletion auto_policy_testing/green/synapse/random.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
resource "random_password" "this" {
length = 16
number = true
numeric = true
special = true
min_lower = 1
min_numeric = 1
min_special = 1
min_upper = 1
override_special = "_%@"
}

Expand Down

0 comments on commit 09d3cfe

Please sign in to comment.