Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: modules azure config, activity_log and ad_application #67

Merged
merged 2 commits into from
Sep 2, 2020

Conversation

afiune
Copy link
Contributor

@afiune afiune commented Sep 2, 2020

We have three new modules:

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

Here is an example of how to integrate them all together:

provider "azuread" {}

provider "azurerm" {
  features {}
}

provider "lacework" {}

module "az_config" {
  source = "./modules/config"
}

module "az_activity_log" {
  source                      = "./modules/activity_log"
  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
}

Signed-off-by: Salim Afiune Maya [email protected]

@afiune afiune changed the title refactore(azure): new Azure modules refactor(azure): new modules az config, activity_log and ad_application Sep 2, 2020
@afiune afiune changed the title refactor(azure): new modules az config, activity_log and ad_application refactor: modules azure config, activity_log and ad_application Sep 2, 2020
@afiune afiune self-assigned this Sep 2, 2020
@afiune afiune added documentation Improvements or additions to documentation enhancement New feature or request labels Sep 2, 2020
@afiune afiune force-pushed the afiune/azure/modules branch 2 times, most recently from 286fbb3 to 30f153d Compare September 2, 2020 18:52
The new Azure Modules are here!

We have three new modules:
* `ad_application` Creates a Lacework Active Directory application
* `activity_log` Creates a Lacework Activity Log integration
* `config` Creates a Lacework Compliance integration

Here is an example of how to integrate them all together:
```hcl
provider "azuread" {}

provider "azurerm" {
  features {}
}

provider "lacework" {}

module "az_config" {
  source = "./modules/config"
}

module "az_activity_log" {
  source                      = "./modules/activity_log"
  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
}
```

Signed-off-by: Salim Afiune Maya <[email protected]>
@afiune afiune force-pushed the afiune/azure/modules branch from 30f153d to 0d5c99d Compare September 2, 2020 18:53
Copy link
Contributor

@scottford-lw scottford-lw left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Signed-off-by: Salim Afiune Maya <[email protected]>
@afiune afiune force-pushed the afiune/azure/modules branch from 9b6f0ea to 2f2658b Compare September 2, 2020 20:54
@afiune afiune merged commit 133de8a into master Sep 2, 2020
@afiune afiune mentioned this pull request Sep 2, 2020
@afiune afiune deleted the afiune/azure/modules branch September 4, 2020 13:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants