Skip to content

Commit 9a9bcfb

Browse files
committed
removed commented code
1 parent 2e7abea commit 9a9bcfb

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

provider/azure/main.tf

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,6 @@ data "azurerm_subscription" "current" {}
44

55
data "azurerm_subscription" "primary" {}
66

7-
# resource "azurerm_role_definition" "blob_storage_access" {
8-
# name = "BlobStorageAccess"
9-
# description = "Role definition for accessing Azure Blob Storage"
10-
# scope = "/subscriptions/${data.azurerm_subscription.current.subscription_id}"
11-
12-
# permissions {
13-
# actions = [
14-
# "Microsoft.Storage/storageAccounts/blobServices/containers/read",
15-
# "Microsoft.Storage/storageAccounts/blobServices/containers/write",
16-
# "Microsoft.Storage/storageAccounts/blobServices/containers/delete",
17-
# ]
18-
19-
# not_actions = []
20-
# }
21-
22-
# assignable_scopes = [
23-
# "/subscriptions/${data.azurerm_subscription.current.subscription_id}",
24-
# ]
25-
# }
26-
27-
# resource "azurerm_role_assignment" "blob_storage_access_assignment" {
28-
# principal_id = azurerm_user_assigned_identity.mongo_backup_identity.principal_id
29-
# role_definition_name = azurerm_role_definition.blob_storage_access.name
30-
# scope = "/subscriptions/${data.azurerm_subscription.current.subscription_id}"
31-
# }
32-
337
resource "random_password" "mongodb_root_password" {
348
count = var.mongodb_custom_credentials_enabled ? 0 : 1
359
length = 20

0 commit comments

Comments
 (0)