Skip to content
Merged
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## Version 0.11.12 - 2025-11-10

- Add initial GCP support with Terraform modules and examples (`single_region` and `cross_project`)
- Add permissions for scanning GCE and Artifact Registry images
- Support custom scanner and agent configuration
- Improve S3 lifecycle rules and enable KMS key rotation on RDS exports
- Fix API call Content-Type in ARM template
- Use scanner health check endpoint instead of custom service

## Version 0.11.11 - 2025-06-16

- Adapt CopySnapshot policy to latest IAM changes requiring both source and destination statements
Expand Down
10 changes: 5 additions & 5 deletions azure/arm/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.36.177.2456",
"templateHash": "4312948444920496734"
"version": "0.38.33.27573",
"templateHash": "6445791290908331505"
}
},
"functions": [
Expand Down Expand Up @@ -569,7 +569,7 @@
"count": "[length(map(filter(parameters('scanScopes'), lambda('s', startsWith(lambdaVariables('s'), '/subscriptions/'))), lambda('s', skip(lambdaVariables('s'), length('/subscriptions/')))))]"
},
"type": "Microsoft.Resources/deployments",
"apiVersion": "2022-09-01",
"apiVersion": "2025-04-01",
"name": "[format('delegateRoleAssignment-{0}', guid(resourceId('Microsoft.Authorization/roleDefinitions', guid(variables('name'), 'delegateRole', resourceGroup().id, subscription().id)), resourceId('Microsoft.ManagedIdentity/userAssignedIdentities', parameters('identityName')), map(filter(parameters('scanScopes'), lambda('s', startsWith(lambdaVariables('s'), '/subscriptions/'))), lambda('s', skip(lambdaVariables('s'), length('/subscriptions/'))))[copyIndex()]))]",
"subscriptionId": "[map(filter(parameters('scanScopes'), lambda('s', startsWith(lambdaVariables('s'), '/subscriptions/'))), lambda('s', skip(lambdaVariables('s'), length('/subscriptions/'))))[copyIndex()]]",
"location": "[resourceGroup().location]",
Expand All @@ -595,8 +595,8 @@
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.36.177.2456",
"templateHash": "3116385340016775396"
"version": "0.38.33.27573",
"templateHash": "4400777875424963630"
}
},
"parameters": {
Expand Down
2 changes: 1 addition & 1 deletion azure/modules/custom-data/templates/install.sh.tftpl
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ api_key: $DD_API_KEY
site: $DD_SITE
azure_client_id: ${azure_client_id}
installation_mode: terraform
installation_version: 0.11.11
installation_version: 0.11.12
%{if length(scanner_configuration) > 0}
${yamlencode(scanner_configuration)}
%{endif}
Expand Down
2 changes: 1 addition & 1 deletion gcp/modules/instance/startup-script.sh.tftpl
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ hostname: $DD_HOSTNAME
api_key: $DD_API_KEY
site: $DD_SITE
installation_mode: terraform
installation_version: 0.11.11
installation_version: 0.11.12
%{if length(scanner_configuration) > 0}
${yamlencode(scanner_configuration)}
%{endif}
Expand Down
2 changes: 1 addition & 1 deletion modules/user_data/templates/install.sh.tftpl
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ hostname: $DD_HOSTNAME
api_key: $DD_API_KEY
site: $DD_SITE
installation_mode: terraform
installation_version: 0.11.11
installation_version: 0.11.12
%{if length(scanner_configuration) > 0}
${yamlencode(scanner_configuration)}
%{endif}
Expand Down
Loading