Skip to content

v0.1.1

Compare
Choose a tag to compare
@afiune afiune released this 03 Sep 15:00
· 59 commits to main since this release

Release Notes

Another day, another release. These are the release notes for the version v0.1.1.

We are introducing three new modules for Azure Cloud:

  • ad_application Creates an Azure Active Directory application
  • activity_log Creates a Lacework Activity Log integration
  • config Creates a Lacework Compliance integration

Here is an example of how to use these modules to create both, a Lacework Compliance
integration and Lacework Activity Log integration:

provider "azuread" {}

provider "azurerm" {
  features {}
}

provider "lacework" {}

module "az_config" {
  source = "git::https://github.com/lacework/terraform-provisioning.git//azure/modules/config?ref=tags/v0.1.1"
}

module "az_activity_log" {
  source = "git::https://github.com/lacework/terraform-provisioning.git//azure/modules/activity_log?ref=tags/v0.1.1"

  use_existing_ad_application = true
  application_id              = module.az_config.application_id
  application_password        = module.az_config.application_password
  service_principal_id        = module.az_config.service_principal_id
}

Refactor

  • refactor: modules azure config, activity_log and ad_application (#67) (Salim Afiune)(133de8a)

Bug Fixes

  • fix(gcp): use correct Service Account Email (#65) (Salim Afiune)(d4777a1)