Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 30 additions & 8 deletions Packs/Azure/Integrations/Azure/Azure.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,15 @@
"azure-webapp-update",
"azure-webapp-assign-managed-identity-quick-action",
"azure-webapp-update-assign-managed-identity-quick-action",
"azure-webapp-set-webapp-to-https-only-quick-action",
"azure-webapp-enable-client-cert-quick-action",
],
"Microsoft.Web/sites/write": [
"azure-webapp-update",
"azure-webapp-assign-managed-identity-quick-action",
"azure-webapp-update-assign-managed-identity-quick-action",
"azure-webapp-set-webapp-to-https-only-quick-action",
"azure-webapp-enable-client-cert-quick-action",
],
"Microsoft.DBforMySQL/flexibleServers/configurations/read": [
"azure-mysql-flexible-server-param-set",
Expand Down Expand Up @@ -187,14 +191,26 @@
"azure-acr-disable-authentication-as-arm-quick-action",
"azure-acr-disable-anonymous-pull-quick-action",
],
"Microsoft.KeyVault/vaults/read": ["azure-key-vault-update"],
"Microsoft.KeyVault/vaults/write": ["azure-key-vault-update"],
"Microsoft.Sql/servers/databases/securityAlertPolicies/read": ["azure-sql-db-threat-policy-update"],
"Microsoft.Sql/servers/databases/securityAlertPolicies/write": ["azure-sql-db-threat-policy-update"],
"Microsoft.DocumentDB/databaseAccounts/read": ["azure-cosmos-db-update"],
"Microsoft.DocumentDB/databaseAccounts/write": ["azure-cosmos-db-update"],
"Microsoft.Sql/servers/databases/transparentDataEncryption/read": ["azure-sql-db-transparent-data-encryption-set"],
"Microsoft.Sql/servers/databases/transparentDataEncryption/write": ["azure-sql-db-transparent-data-encryption-set"],
"Microsoft.KeyVault/vaults/read": ["azure-key-vault-update", "azure-key-vault-purge-and-soft-delete-enable-quick-action"],
"Microsoft.KeyVault/vaults/write": ["azure-key-vault-update", "azure-key-vault-purge-and-soft-delete-enable-quick-action"],
"Microsoft.Sql/servers/databases/securityAlertPolicies/read": [
"azure-sql-db-threat-policy-update",
"azure-sql-db-threat-policy-update-quick-action",
],
"Microsoft.Sql/servers/databases/securityAlertPolicies/write": [
"azure-sql-db-threat-policy-update",
"azure-sql-db-threat-policy-update-quick-action",
],
"Microsoft.DocumentDB/databaseAccounts/read": ["azure-cosmos-db-update", "azure-cosmos-db-disable-key-quick-action"],
"Microsoft.DocumentDB/databaseAccounts/write": ["azure-cosmos-db-update", "azure-cosmos-db-disable-key-quick-action"],
"Microsoft.Sql/servers/databases/transparentDataEncryption/read": [
"azure-sql-db-transparent-data-encryption-set",
"azure-sql-db-transparent-data-encryption-enable-tde-quick-action",
],
"Microsoft.Sql/servers/databases/transparentDataEncryption/write": [
"azure-sql-db-transparent-data-encryption-set",
"azure-sql-db-transparent-data-encryption-enable-tde-quick-action",
],
"Microsoft.Resources/subscriptions/resourceGroups/read": ["azure-nsg-resource-group-list"],
"Microsoft.Consumption/usageDetails/read": ["azure-billing-usage-list"],
"Microsoft.Consumption/budgets/read": ["azure-billing-budgets-list"],
Expand Down Expand Up @@ -4834,11 +4850,17 @@ def main(): # pragma: no cover
"azure-monitor-log-profile-update": monitor_log_profile_update_command,
"azure-disk-update": disk_update_command,
"azure-webapp-update": webapp_update_command,
"azure-webapp-set-webapp-to-https-only-quick-action": webapp_update_command,
"azure-webapp-enable-client-cert-quick-action": webapp_update_command,
"azure-acr-update": acr_update_command,
"azure-key-vault-update": update_key_vault_command,
"azure-key-vault-purge-and-soft-delete-enable-quick-action": update_key_vault_command,
"azure-sql-db-threat-policy-update": sql_db_threat_policy_update_command,
"azure-sql-db-threat-policy-update-quick-action": sql_db_threat_policy_update_command,
"azure-sql-db-transparent-data-encryption-set": sql_db_tde_set_command,
"azure-sql-db-transparent-data-encryption-enable-tde-quick-action": sql_db_tde_set_command,
"azure-cosmos-db-update": cosmosdb_update_command,
"azure-cosmos-db-disable-key-quick-action": cosmosdb_update_command,
"azure-nsg-security-groups-list": nsg_security_groups_list_command,
"azure-nsg-security-rule-get": nsg_security_rule_get_command,
"azure-nsg-security-rules-list": nsg_security_rules_list_command,
Expand Down
Loading
Loading