Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
github.com/adlerrobert/terraform-provider-ldap
This is a Terraform Provider to work with Active Directory.
This provider currently supports only computer objects, but more active directory resources are planned. Please feel free to contribute.
For general information about Terraform, visit the official website and the GitHub project page.
More information can be found on the Active Directory Provider GitHub pages.
# Configure the AD Provider
provider "activedirectory" {
host = "ad.example.org"
domain = "example.org"
use_tls = false
user = "admin"
password = "password"
}
# Add computer to Active Directory
resource "activedirectory_computer" "test_computer" {
name = "TerraformComputer" # update will force destroy and new
ou = "CN=Computers,DC=example,DC=org" # can be updated
description = "terraform sample server" # can be updated
}
# Add ou to Active Directory
resource "activedirectory_ou" "test_ou" {
name = "TerraformOU" # can be updated
base_ou = "OU=Test,CN=Computers,DC=example,DC=org" # can be updated
description = "terraform sample ou" # can be updated
}
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.