Skip to content

Commit

Permalink
Merge pull request #10 from Dashlane/az-blob-template
Browse files Browse the repository at this point in the history
Update template resources API version
  • Loading branch information
ludwidmer authored Oct 6, 2023
2 parents 65a3e43 + 162a90d commit c0da953
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions AzureTemplates/Blob storage/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"resources": [
{
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2021-04-01",
"apiVersion": "2022-09-01",
"name": "[parameters('Storage account name')]",
"location": "[parameters('location')]",
"kind": "StorageV2",
Expand All @@ -65,15 +65,15 @@
},
{
"type": "Microsoft.Storage/storageAccounts/fileServices/shares",
"apiVersion": "2021-04-01",
"apiVersion": "2022-09-01",
"name": "[concat(parameters('Storage account name'), '/default/', parameters('Share filename'))]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts', parameters('Storage account name'))]"
]
},
{
"type": "Microsoft.ContainerInstance/containerGroups",
"apiVersion": "2021-03-01",
"apiVersion": "2022-09-01",
"name": "[parameters('Name')]",
"location": "[parameters('location')]",
"dependsOn": [
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ In order to manage the Dashlane audit logs of your business account, you need to

## How does it work ?

The Docker image provided leverages the Dashlane CLI tool that will pull the audit logs and send them in your SIEM of choice. By default, when running the image in a container, the logs from DAY-1 will be retrieved, and new logs will be pulled every minutes. To handle the logs, we included Fluentbit with this basic configuration file:
The Docker image provided leverages the Dashlane CLI tool that will pull the audit logs and send them in your SIEM of choice. By default, when running the image in a container, the logs from DAY-1 will be retrieved, and new logs will be pulled every thirty minutes. To handle the logs, we included Fluentbit with this basic configuration file:

```
[INPUT]
Expand Down Expand Up @@ -79,6 +79,7 @@ You will need:
- A custom Fluentbit configuration file

>**Click on the button to start the deployment**
>
> [![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FDashlane%2Fdashlane-audit-logs%2Fmain%2FAzureTemplates%2FBlob%20storage%2Fazuredeploy.json)
Once your container is deployed, copy the following configuration into a file called "fluent-bit.conf".
Expand Down

0 comments on commit c0da953

Please sign in to comment.