File tree Expand file tree Collapse file tree 1 file changed +0
-26
lines changed
Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Original file line number Diff line number Diff line change @@ -4,32 +4,6 @@ data "azurerm_subscription" "current" {}
44
55data "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-
337resource "random_password" "mongodb_root_password" {
348 count = var. mongodb_custom_credentials_enabled ? 0 : 1
359 length = 20
You can’t perform that action at this time.
0 commit comments